安装 gearman

准备:php 对应gearman插件包 https://pecl.php.net/package/gearman

1. 先安装依赖库

[root@VM_27_0_centos /]# yum install -y boost-devel gperf libevent-devel libuuid-devel
Loaded plugins: fastestmirror, langpacks
Repository epel is listed more than once in the configuration
epel                                                                                                                                                                                      | 3.2 kB  00:00:00     
extras                                                                                                                                                                                    | 3.4 kB  00:00:00     
os                                                                                                                                                                                        | 3.6 kB  00:00:00     
updates                                                                                                                                                                                   | 3.4 kB  00:00:00     
(1/4): extras/7/x86_64/primary_db                                                                                                                                                         | 204 kB  00:00:00     
(2/4): epel/7/x86_64/updateinfo                                                                                                                                                           | 934 kB  00:00:00     
(3/4): epel/7/x86_64/primary                                                                                                                                                              | 3.6 MB  00:00:00     
(4/4): updates/7/x86_64/primary_db             

2. 下载gearmand

[root@VM_27_0_centos server]# wget -c https://launchpad.net/gearmand/1.2/1.1.12/+download/gearmand-1.1.12.tar.gz
[root@VM_27_0_centos server]# tar -zxvf gearmand-1.1.12.tar.gz
[root@VM_27_0_centos server]# cd gearmand-1.1.12
[root@VM_27_0_centos server]# ./configure
[root@VM_27_0_centos server]# make & make install
等待时间较长
CXX.......
make[2]: Leaving directory `/www/server/gearmand-1.1.12'
make[1]: Leaving directory `/www/server/gearmand-1.1.12'
[root@VM_27_0_centos gearman-1.1.2]# ./configure --with-php-config=/www/server/php/71/bin/php-config

猜你喜欢

转载自www.cnblogs.com/buxiangxin/p/9917047.html