0

i'm planing to install sensu monitoring framework. It needs Erlang to work. I'm running RHEL5 and it's not connected to internet. Only option is to download and install the packages. Please help..

ivcode
  • 235
  • 2
  • 14

3 Answers3

1

I would try to download and install the RPM package esl-erlang from Erlang Solutions (CentOS tab). It's a single-package installation.

legoscia
  • 39,593
  • 22
  • 116
  • 167
mpm
  • 3,534
  • 23
  • 33
  • By the way installation using repository is a good practice for linux distribution with package system. There is some instructions in https://www.erlang-solutions.com/downloads/download-erlang-otp how to add repository and install erlang. – Elzor Apr 05 '14 at 11:17
1

Install required dependencies:

yum install -y openssl openssl-devel ncurses-devel ncurses unixODBC unixODBC-devel make which java-1.8.0-openjdk-devel.ppc64le tar gcc build-essential wget

Download erlang to install erl and escript binaries:

wget erlang.org/download/otp_src_18.3.tar.gz && tar zxvf otp_src_18.3.tar.gz && cd otp_src_18.3 && export ERL_TOP=`pwd` && export PATH=$PATH:$ERL_TOP/bin 

Configure and build erlang:

./configure && make && make install
Nander Speerstra
  • 1,496
  • 6
  • 24
  • 29
0

You can download the erlang source tar.gz from internet, then compile the source files and install. just like make and make install.

You can read this link:http://www.erlang.org/doc/installation_guide/INSTALL.html

BlackMamba
  • 10,054
  • 7
  • 44
  • 67