Skip to content

Instantly share code, notes, and snippets.

@harekumar
Last active December 7, 2016 11:37
Show Gist options
  • Save harekumar/ce5211a74d420e1d971d9145cb8d9f3a to your computer and use it in GitHub Desktop.
Save harekumar/ce5211a74d420e1d971d9145cb8d9f3a to your computer and use it in GitHub Desktop.
Installation instruction to install erlang/otp-17.5 on centOS
—————— Install Java 8 ————————
1. wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u60-b27/jdk-8u60-linux-x64.rpm"
2. sudo yum localinstall jdk-8u60-linux-x64.rpm
—————— Install Erlang/OTP-17.5 ————————
Setup erlang 17.5:
1. wget http://erlang.org/download/otp_src_17.5.tar.gz & untar it.
2. cd otp_src_17.5
3. ./configure —> If you get dependencies missing warning then install the dependencies one by one.
yum install fop
yum install openssl
yum install -y openssl-devel
yum install unixODBC unixODBC-devel
yum install ncurses-devel.x86_64
yum install wxGTK
yum install wxGTK-devel
yum install gtk2-devel
yum install gcc gcc-c++
4. make && sudo make install
After installing erlang installation of ejabberd is an easy task. Hence not adding any notes. I'm sure You will figure it out :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment