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 PHP-FPM on OpenBSD 7.5

Install PHP-FPM on OpenBSD 7.5

Step 1 – Install

pkg_add php php-fpm
rcctl enable php83_fpm && rcctl start php83_fpm

Step 2 – Verify

php --version
php-fpm -v 2>/dev/null || php-fpm8.3 -v 2>/dev/null || php-fpm8.2 -v

Step 3 – Key pool settings (/etc/php-fpm.conf)

user  = www-data
group =...
7th May 2026

Install PHP-FPM on RHEL 9

Install PHP-FPM on RHEL 9

Step 1 – Install

subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms
dnf install -y php php-fpm php-cli php-opcache php-mysqlnd php-mbstring php-xml php-gd
systemctl enable --now php-fpm

Step 2 – Verify

php --version
php-fpm -v 2>/dev/null...
7th May 2026

Install PHP-FPM on Ubuntu 24.04

Install PHP-FPM on Ubuntu 24.04

Step 1 – Install

apt update && apt upgrade -y
apt install -y php8.3-fpm php8.3-cli php8.3-opcache php8.3-mysql php8.3-mbstring php8.3-xml php8.3-gd
systemctl enable --now php8.3-fpm

Step 2 – Verify

php --version
php-fpm -v 2>/dev/null || php-fpm8.3 -v 2>/dev/n...
7th May 2026

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

Install Prometheus on RHEL 9

Install Prometheus on RHEL 9

Step 1 – Install

VERSION=2.51.2
wget https://github.com/prometheus/prometheus/releases/download/v${VERSION}/prometheus-${VERSION}.linux-amd64.tar.gz
tar xvf prometheus-${VERSION}.linux-amd64.tar.gz
cp prometheus-${VERSION}.linux-amd64/prometheus /usr/local/bin/
cp pr...
7th May 2026

Install RabbitMQ on Almalinux 8

Install RabbitMQ on CentOS 7

sudo dnf install epel-release
sudo dnf update

Install Erlang

Add repository

sudo dnf install https://packages.erlang-solutions.com/erlang-solutions-2.0-1.noarch.rpm

Install erlang and dependencies

sudo dnf install erlang socat logrotate

Install RabbitMQ

A...

29th Dec 2022

Install RabbitMQ on centos 7

Install RabbitMQ on CentOS 7

sudo yum -y install epel-release
sudo yum -y update

Install Erlang

Download repository

wget http://packages.erlang-solutions.com/erlang-solutions-1.0-1.noarch.rpm

Add repository

sudo rpm -Uvh erlang-solutions-1.0-1.noarch.rpm

Install erlang and dependencies...

13th Mar 2019

Install Redis on AlmaLinux 9

Install Redis on AlmaLinux 9

Step 1 – Install

dnf install epel-release -y
dnf install -y redis
systemctl enable --now redis

Step 2 – Verify

redis-cli ping   # PONG

Step 3 – Bind and password (/etc/redis/redis.conf)

bind 127.0.0.1 ::1
requirepass StrongRedisPass!

Restart, then:

redi...
7th May 2026