Centos 6 下安装 erlang 手记
发布时间: 5年前 (2020-05-03)浏览: 1216评论: 0
标签:erlang
原文:http://blog.csdn.net/roade/article/details/28898857
基于openfire的IM项目已经成功上线,接下来的计划准备开始调研 ejabberd.
ejabberd 是基于erlang开发的,那么就先从搭建 erlang环境开始吧。
选择的操作系统为Centos6 ,erlang的最新版OTP17.0:
1. 下载最新版erlang otp_17.0
2. 解压缩 tar -zxvf otp_src_17.0
3. 进入解压缩后的目录
4. ./configure --prefix=/opt/erlang --without-javac
出现错误大致为: No curses library functions found
5. 需要安装ncurses : yum install ncurses-devel
6.安装好 ncurses后继续 ./config --prefix=/opt/erlang --without-javac
7.make
8. make install
9.安装成功,可以做一个链接: ln -s /opt/erlang/bin/erl /usr/local/bin/erl
在安装过程中可能会遇到如下情况:
*********************************************************************
********************** APPLICATIONS DISABLED **********************
*********************************************************************
crypto : No usable OpenSSL found
odbc : ODBC library - link check failed
orber : No C++ compiler found
ssh : No usable OpenSSL found
ssl : No usable OpenSSL found
*********************************************************************
*********************************************************************
********************** APPLICATIONS INFORMATION *******************
*********************************************************************
wx : wxWidgets not found, wx will NOT be usable
*********************************************************************
*********************************************************************
********************** DOCUMENTATION INFORMATION ******************
*********************************************************************
documentation :
fop is missing.
Using fakefop to generate placeholder PDF files.
*********************************************************************
********************** APPLICATIONS DISABLED **********************
*********************************************************************
crypto : No usable OpenSSL found
odbc : ODBC library - link check failed
orber : No C++ compiler found
ssh : No usable OpenSSL found
ssl : No usable OpenSSL found
*********************************************************************
*********************************************************************
********************** APPLICATIONS INFORMATION *******************
*********************************************************************
wx : wxWidgets not found, wx will NOT be usable
*********************************************************************
*********************************************************************
********************** DOCUMENTATION INFORMATION ******************
*********************************************************************
documentation :
fop is missing.
Using fakefop to generate placeholder PDF files.
*********************************************************************
解决上述问题:
1. ODBC library - link check failed 需要安装 unixODBC
> yum list|grep unixODBC
> yum install unixODBC-devel
2. No usable OpenSSL found :需要安装 openssl
> yum list|grep ssl
> yum install openssl-devel
3. No C++ compiler found:需要安装gc c++ 编译器
> yum list|grep gcc
> yum install gcc-c++
4. wxWidgets not found, wx will NOT be usable : wxWidgets 这个库需要单独下
(http://www.wxwidgets.org/downloads/),yum 下没有:
> 下载wxWidgets 源码包 后解压缩并编译安装
> bzip2 -d wxWidgets-3.0.0.tar.bz2 tar -jxvf
> tar -xvf wxWidgets-3.0.0.tar
> 安装依赖库: yum
list *gtk+* yum install gtk+extra
>进入解压缩目录,./configure --with-opengl --enable-debug --enable-unicode
> 出现问题OpenGL libraries not available,则需要安装OpenGL库
>> yum list mesa* yum
installmesa*
>> yum list|grep freeglut yum
install freeglut*
>解决OpenGL问题后直接运行 make & make install
5. fop is missing. 可忽略
标签:
上一篇: yarn的安装和使用
下一篇: XMPP即时通讯协议使用(七)——利用Strophe实现WebIM及strophe.plugins插件使用