标签:tar 应该 直接 命令 问题 com 执行 复制 bsp
(1)先安装这个东西
wget https://github.com/downloads/libevent/libevent/libevent-2.0.20-stable.tar.gz
tar zxvf libevent-2.0.20-stable.tar.gz
cd libevent-2.0.20-stable/
./configure --prefix=/usr/local/libevent-2.0.20-stable/
make
make install
(2)安装这个东西
wget http://pecl.php.net/get/libevent-0.1.0.tgz
tar zxvf libevent-0.1.0.tgz
cd libevent-0.1.0
phpize //这个一般在php的bin下面,如果环境变量没配直接打硬路径
./configure --with-php-config=/usr/local/php52/bin/php-config --with-libevent=/usr/local/libevent-2.0.20-stable/ 这俩个路径要指对,一个是php-config,一个是刚才安装的那个
make && make install
make test //这步会告诉你php扩展库路径在哪,其实已经自动将libevent.so放到那个目录了
(3)php.ini加(ps:如果没找到php.ini的话可以执行php --ini,会显示php会依次从那几个文件夹下找php.ini,直接复制个php.ini到那个目录下就行):
extension="libevent.so"
现在这样直接用命令行应该是没问题了,如果是cgi那种还要重启下php-fpm
标签:tar 应该 直接 命令 问题 com 执行 复制 bsp
原文地址:https://www.cnblogs.com/wangjianheng/p/11650068.html