httpsqs消息队列在linux下的安装!

张宴de博客:http://zyan.cc/httpsqs

安装httpsqs前先要安装libevent和tokyocabinet,安装包下载自行百度。

一、libevent安装:

tar zxvf libevent-2.0.12-stable.tar.gz       
cd libevent-2.0.12-stable/     

./configure --prefix=/usr/local/libevent-2.0.12-stable/        
 
make && make install         

二、tokyocabinet安装:

tar zxvf tokyocabinet-1.4.47.tar.gz
cd tokyocabinet-1.4.47/

./configure --prefix=/usr/local/tokyocabinet-1.4.47/

#注:在32位Linux操作系统上编译Tokyo cabinet,请使用./configure --enable-off64代替./configure,可以使数据库文件突破2GB的限制。
#./configure --enable-off64 --prefix=/usr/local/tokyocabinet-1.4.47/

make && make install
执行命令:./configure --prefix=/usr/local/tokyocabinet-1.4.47/ 报错configure: error: bzlib.h is required解决方法:
./configure --prefix=/usr/local/tokyocabinet-1.4.47/   
.......
.......
configure: error: bzlib.h is required    #报错 
[root@root tokyocabinet-1.4.47]# yum install bzip2-devel  #解决方法,安装bzip2-devel

三、httpsqs安装:

tar zxvf httpsqs-1.7.tar.gz
cd httpsqs-1.7/
make && make install

你可能感兴趣的:(httpsqs消息队列在linux下的安装!)