How to Install PostgreSQL on Rocky Linux and AlmaLinux

Channel: Rocky Linux PostgreSQL AlmaLinux Linux
Abstract: is PostgreSQL 10. $ sudo dnf -qy module disable postgresqlstart the PostgreSQL database server. $ sudo systemctl start postgresql-13

PostgreSQL is an immensely popular open-source relational database management system (RDBMS) that has been around for over 30 years. It provides SQL language support which is used for managing databases and performing CRUD operations (Create Read Update Delete).

[ You might also like: 10 Useful Websites for Learning PostgreSQL Database System]

PostgreSQL has earned itself a solid reputation for its robustness, flexibility, and performance. It’s the primary datastore for numerous web and analytical applications. Global giants that rely on PostgreSQL include Spotify, Instagram, Trivago, Uber, and Netflix.

At the time of writing this guide, the latest version is PostgreSQL 13 and in this article, we demonstrate how to install PostgreSQL on Rocky Linux and AlmaLinux.

Step 1: Add the PostgreSQL Repository

The default version of PostgreSQL on Appstream repositories is PostgreSQL 10.

$ sudo dnf module list postgresql
List PostgreSQL Module

From the output, we can clearly see that the default PostgreSQL stream – marked with [ d ] is PostgreSQL 10.

To install the latest PostgreSQL version, we need to, first, install the PostgreSQL YUM repository on our system as shown.

$ sudo dnf install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
Step 2: Install PostgreSQL 13 on Rocky Linux

With the PostgreSQL YUM repository in place, the next step is to update Rocky Linux repositories. Simply run the following command to achieve this

$ sudo dnf update

Next, disable the default module which, as we saw earlier, is PostgreSQL 10.

$ sudo dnf -qy module disable postgresql

Once the default module is disabled, proceed and install PostgreSQL 13 client and server as shown.

$ sudo dnf install postgresql13 postgresql13-server

Type 'Y' and hit ENTER every time you are prompted to import the GPG key.

Install PostgreSQL in Rocky Linux

The command installs PostgreSQL server and client alongside other dependencies. At the very end of the installation, you should have the output displayed which indicates that all the packages were successfully installed.

PostgreSQL Installation Completed

You can confirm the version of PostgreSQL installed using the command:

$ psql -V

psql (PostgreSQL) 13.4
Step 3: Start and Enable PostgreSQL Service

Once PostgreSQL is installed, the next step is to start the service and ensure the database server is running. But before that, enable PostgreSQL to start on boot time.

$ sudo systemctl enable postgresql-13

Thereafter, start the PostgreSQL database server.

$ sudo systemctl start postgresql-13

To confirm that PostgreSQL is up and running, execute:

$ sudo systemctl status postgresql-13
Check PostgreSQL Status

From the output, it’s clear that our database server is running as we would expect.

Step 4: Initialize the PostgreSQL Database

Before proceeding further, we need to initialize the initdb database which is responsible for creating a new PostgreSQL cluster. A cluster is a group or collection of several databases that are managed by a cluster.

So, to initialize the database, run the command:

$ sudo /usr/pgsql-*/bin/postgresql-*-setup initdb
Initialize PostgreSQL Database Step 5: Connect to PostgreSQL Database

When PostgreSQL is installed, a default database user called postgres is created. It does not require any authentication and a password is therefore not required to log in. In the next step, we shall create a password for the postgres user for security reasons.

For now, we are going to log in to the PostgreSQL shell by first switching to the postgres user.

$ sudo su - postgres

Once you have switched to the postgresql user, access the database prompt using the command:

$ psql
Connect PostgreSQL Database Step 6: Set Password for Postgres User

Finally, we are going to secure the postgres user with a password for security reasons. As a sudo user, run the command:

$ sudo passwd postgres

Provide a new password and confirm. Now log in again as the Postgres user.

$ su - postgres
Set Postgres User Password

And run the command shown.

psql -c "ALTER USER postgres WITH PASSWORD 'your-password';"
Alter Postgres User Role

The next time you try logging in using the postgres user, you will be required to authenticate.

$ su - postgres
Login to PostgreSQL Database

And that’s just about it. We have walked you through the installation of PostgreSQL on Rocky Linux and AlmaLinux

Ref From: tecmint

Related articles