0

我打算安装 sensu 监控框架。它需要 Erlang 才能工作。我正在运行 RHEL5,但它没有连接到互联网。唯一的选择是下载并安装软件包。请帮忙..

4

3 回答 3

1

我会尝试esl-erlangErlang Solutions(CentOS 选项卡)下载并安装 RPM 包。这是一个单包安装。

于 2014-04-03T10:16:09.637 回答
1

安装所需的依赖项:

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

下载erlang安装erlescript二进制文件:

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 

配置和构建erlang

./configure && make && make install
于 2016-07-27T10:35:16.963 回答
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

于 2014-04-03T06:53:55.860 回答