Skip to main content

To add Erlang repository that also includes the public key for verifying signed package, use the following shell commands:

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

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

Install Erland

yum install erlang

Check that Erland has been installed enter the command (case sensitive)

erl

If the Erland package has been successfully installed terminal will be output something like

Erlang/OTP 21 [erts-10.3.2] [source] [64-bit] [smp:48:8] [ds:48:8:10] [async-threads:1] [hipe]

Related articles

Andrew Fletcher02 May 2021
Installing Erlang XMPP on Apache
I'm writing these steps primarily for myself as a reference.  However, if someone else finds them useful to great. Adding XMPP framework to your server.  Initially I was going to add Prosody, however as I'm working off an Apache server with Centos 6.10 this quickly proved to a goal that...
Andrew Fletcher26 Aug 2019
Updating ejabberd
Overview To update ejabberd you need to remove it, then re-install with the latest version.  However, do check for database changes before initiating this process from the ejabberd documentation site (https://docs.ejabberd.im/admin/upgrade/). Preparation Before you begin this...