MAILERQ INSTALLATION AND CONFIGURATION ON UBUNTU-STEP BY STEP

Best Super SMTP email Services For Email Marketing
Installation of MailerQ Now, you have completed above steps, it’s time to install MailerQ. We will begin with updating and installing few packages required by MailerQ. Updating and Upgrading VPS First of all update your Ubuntu
sudo apt update -y
sudo apt upgrade -y
sudo hostnamectl set-hostname mail.yourdomain.com
sudo apt-get install curl gnupg debian-keyring debian-archive-keyring apt-transport-https -y
sudo apt-key adv --keyserver "hkps://keys.openpgp.org" --recv-keys "0x0A9AF2115F4687BD29803A206B73A36E6026DFCA"
curl -1sLf https://dl.cloudsmith.io/public/rabbitmq/rabbitmq-erlang/gpg.E495BB49CC4BBE5B.key | sudo apt-key add -
curl -1sLf https://dl.cloudsmith.io/public/rabbitmq/rabbitmq-server/gpg.9F4587F226208342.key | sudo apt-key add -
sudo tee /etc/apt/sources.list.d/rabbitmq.list <
apt-get update -y
sudo apt-get install -y erlang-base \
erlang-asn1 erlang-crypto erlang-eldap erlang-ftp erlang-inets \
erlang-mnesia erlang-os-mon erlang-parsetools erlang-public-key \
erlang-runtime-tools erlang-snmp erlang-ssl \
erlang-syntax-tools erlang-tftp erlang-tools erlang-xmerl
apt-get install rabbitmq-server -y --fix-missing
systemctl status rabbitmq-server
wget -qO - https://packages.mailerq.com/mailerq.key | sudo apt-key add -
echo "deb https://packages.mailerq.com/debian stable main" | sudo tee /etc/apt/sources.list.d/mailerq.list
sudo apt update
sudo apt install mailerq
# Management console configuration
www-port: 8485
sudo service mailerq start
Now, you can got http://YOUR_IP:8485 to access the Management Console and send your first email.