当前位置: 首页 > 工具软件 > jzmq > 使用案例 >

CentOS 6.5安装JZMQ

卫弘懿
2023-12-01

在GitHub下载JZMQ的主分支

[root@node2 home]# git clone https://github.com/nathanmarz/jzmq.git

如果没有安装git的话,请先安装git

[root@node2 home]# yum install git

进入目录

[root@node2 cloud]# cd jzmq/

执行

[root@node2 jzmq]# ./autogen.sh

报错

autogen.sh: error: could not find libtool.  libtool is required to run autogen.sh.

安装依赖

[root@node2 jzmq]# yum install libtool

下面就是

[root@node2 jzmq]# ./autogen.sh 
[root@node2 jzmq]# ./configure 
[root@node2 jzmq]# make
[root@node2 jzmq]# make install

完成

 类似资料: