storm安装过程遇到错误

Storm的通信库使用ZeroMQ,以及JZMQ(Java API),需要安装这两个包:

安装ZMQ 2.1.7

下载后编译安装ZMQ:

wget http://download.zeromq.org/historic/zeromq-2.1.7.tar.gz
tar -xzf zeromq-2.1.7.tar.gz
cd zeromq-2.1.7
./configure
make
sudo make install

错误信息

configure: error: cannot link with -luuid, install uuid-dev)


执行如下命令:

yum install *uuid*


安装JZMQ

下载后编译安装JZMQ:

git clone https://github.com/nathanmarz/jzmq.git
cd jzmq
./autogen.sh
./configure
make
sudo make install
错误信息
autogen.sh: error: could not find libtool.  libtool is required to run autogen.sh.
执行如下命令:
yum install libtool

安装过程参考:
http://blog.linezing.com/2013/01/how-to-install-and-deploy-storm-cluster

你可能感兴趣的:(storm安装过程遇到错误)