Need to migrate your e-mails to a new server? Free and paid versions of our online tool available.
Hero Image

Server Setup Guides

Install postgresql on Almalinux 8

Installing postgresql

dnf install postgresql
dnf install postgresql-server

Enable postgres service

systemctl enable postgresql.service

Initialize postgresql Files

postgresql-setup initdb

Setup postgresql

Set METHOD of address 127.0.0.1 and ::1 to trust at the pg_hba.conf file...

29th Dec 2022

Install postgresql on centos 7

Installing postgresql

yum install postgresql
yum install postgresql-server

Enable postgres service

systemctl enable postgresql.service

Initialize postgresql Files

postgresql-setup initdb

Setup postgresql

Set address 127.0.0.1 and ::1 to trust at the pg_hba.conf file.

File /...

23rd Dec 2022

Install PostgreSQL on RHEL 9

Install PostgreSQL on RHEL 9

Step 1 – Install

dnf install -y postgresql-server postgresql-contrib
postgresql-setup --initdb
systemctl enable --now postgresql

Step 2 – Connect as superuser

sudo -u postgres psql

Step 3 – Create database and user

CREATE USER appuser WITH PASSWORD 'StrongPas...
7th May 2026