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 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

Kerberos setup on Almalinux 8

Installing Kerberos on Almalinux 8

This installation is going to require 2 servers one acts as kerberos KDC server and the other machine is going to be client. Lets assume the FQDN's are (here cw.com is the domain name, make a note of the domain name here):

  • Kerberos KDC Server: kdc.cw.com
  • K...
29th Dec 2022

Maxscale and pacemaker on centos 7

Install packages on both nodes

sudo yum install corosync pcs pacemaker maxscale

Set the password for the hacluster user [both nodes]

sudo passwd hacluster

Start the pcs daemon service [both nodes]

sudo systemctl start pcsd

Authenticate the cluster

sudo pcs cluster auth node01.domain....
13th Dec 2022