手顺-linux安装libevent扩展

Posted wangjianheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手顺-linux安装libevent扩展相关的知识,希望对你有一定的参考价值。

(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



 

以上是关于手顺-linux安装libevent扩展的主要内容,如果未能解决你的问题,请参考以下文章

linux php安装memcached扩展

Linux下的Memcache安装及安装Memcache的PHP扩展安装

linux下给php安装memcached及memcache扩展(转)

linux php安装memcached扩展

为php5.6安装memched扩展

Linux下Memcached的安装步骤是啥呢?