Hero Image

IT setup examples

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

Read more

29th 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...

Read more

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

Read more

23rd Dec 2022