Guide – How To Start – Database with PostgreSQL® 16 based on AlmaLinux® OS 10

 Database with PostgreSQL® 16 based on AlmaLinux® OS 10 delivers a robust, enterprise-grade database platform with RHEL compatibility and performance-focused tuning. Ideal for DevOps pipelines and hybrid deployments across cloud or on-premise infrastructure.

This is a quick deployment and ready-to-run image.

Simple and rapid installation. Easy to maintain.

Connecting and Configuring Database with PostgreSQL® 16 based on AlmaLinux® OS 10

Before starting, go to the pgAdmin downloading page – Download, select the desired version, download, and install it.

For the connection to the server, you should know the IP address of the VM. You can find it in your Azure personal account. Select the virtual machine from the list. By clicking the item “Overview”, your IP is displayed in the “Public IP Address” line.

For the virtual machine to function correctly, TCP port 5432 must be open in the Azure firewall. You can check this in the Network settings of your virtual machine.

Getting the password to the database

  1. To manage the PostgreSQL server manually, you should connect to a VM. 
  • With OpenSSH

In the Windows 10 operating system (starting with version 1809), an OpenSSH client is available, which allows you to connect to Linux servers via SSH. If Windows 10 is suitable and the OpenSSH client is installed, you can start connecting via SSH. To do this, launch a normal Windows command prompt and enter the command “ssh user@*vm_ip*” (1), where “user” is the username that was specified while creating the virtual machine and “*vm_ip*” is the VM IP address.

Then type “Yes” (2) and enter the password (3) that was specified while creating the virtual machine.

  • With the PuTTY application 

Run PuTTY, enter the VM address in the “Host” field (1), and click “Open” (2) to connect.

In the opened console, you will need to enter the username (1) and password (2) that were specified while the VM was being created (you’ll not see the password in the console while entering it). 

  1. To get the password, enter the command:

$ sudo cat /root/postgres_credentials

Save the database name, the username, and the password

  1. To check the server version, enter

$ psql -V

Connecting to the PostgreSQL server

  1. Go to the pgAdmin download page – Download, select the desired version, download, and install it
  1. Run pgAdmin. By default, you will be asked to set a master password

Set the password and click “OK”.

  1. Click “Add New Server” on the main page
  1. In the pop-up window, enter the name of your connection in the Name field.
  1. Go to the Connection tab. Enter 127.0.0.1 in the Host name/address field (1), enter the database name (2), the username (3), and the password (4) from step 2 of the previous chapter, and enable Save password (5)
  1. Go to the SSH Tunnel tab and click the Use SSH tunneling switch (1). In the Tunnel host field, enter the address of the virtual machine (2), in the Username field type the username to connect to VM (3), in the Password field enter the password (4), which you have used at connecting to the virtual machine. Click Save (5) to confirm the changes and establish the connection
  1. Your connection is ready

More information – 17: PostgreSQL 17.5 Documentation 

Website Built with WordPress.com.

Up ↑