在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
完成