CentOS6.x安装event扩展
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS6.x安装event扩展相关的知识,希望对你有一定的参考价值。
一、系统及安装说明? ? ?系统:CentOS6.x_x64,libevent-2.0.21 库,event-2.3.0扩展。?libevent-2.0.21官方下载地址?https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz,如需其他版本请参照官网文档:http://libevent.org?。libevent-0.1.0扩展? 官方下载:http://pecl.php.net/get/event-2.3.0.tgz? 。本次采取编译安装。
二、功能介绍
? ??libevent扩展(或者event扩展)使得php可以使用系统Epoll、Kqueue等高级事件处理机制,能够显著提高在高并发连接时CPU利用率,在高并发长连接相关应用中非常重要。为了能支持更大的并发连接数,libevent扩展(或者event扩展)建议安装,如果没安装,则默认使用PHP原生Select事件处理机制。
? ?levent扩展安装是依赖libevent-devel类库,所以首先安装libevent-devel类库。
三、安装说明
? ?1>下载libevent-devel并安装
#sudo?wget?http://pecl.php.net/get/event-2.3.0.tgz? #sudo?tar?-zxvf?libevent-2.0.21-stable.tar.gz???#解压 #cd?libevent-2.0.21-stable #sudo?./configure?--prefix=/usr/local/libevent???#假如自定义安装在/usr/local/libevent?目录下 #sudo?make?&&?make?install
? 2>下载libevent扩展并安装
#sudo?wget?http://pecl.php.net/get/event-2.3.0.tgz? #sudo?tar?-zxvf?libevent-0.1.0.tgz .... .... #cd?event-2.3.0/ #phpize???//运用pihize,如果提示错误,可使用绝对路径?如:/usr/php5.6/bin/phpize? #sudo?./configure?--with-php-config=/usr/php5.6/bin/php-config?--with-event-libevent-dir=/usr/local/libevent/??#指定php的环境变量配置路径和libevent-devel类库路径 #sudo?make?&&?make?install
? 3>配置ini文件
? ??通过运行?php --ini
查找php.ini文件位置,然后在文件中添加extension=event.so
三、测试说明
? ?重启php,nginx
#sudo?service?php-fpm?restart #sudo?service?nginx?restart #php?-m|grep?event?#查询是否安装成功
?
以上是关于CentOS6.x安装event扩展的主要内容,如果未能解决你的问题,请参考以下文章
[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段