配置高性能LNMP架构(5)

五、安装xcache,为php加速:

1、安装
# tar xf xcache-1.3.2.tar.gz
# cd xcache-1.3.2
# /usr/local/php/bin/phpize
# ./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config
# make && make install

安装结束时,会出现类似如下行:
Installing shared extensions:     /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/

2、编辑php.ini,整合php和xcache:

首先将xcache提供的样例配置导入php.ini
#  cat xcache.ini >> /etc/php/php.ini

说明:xcache.ini文件在xcache的源码目录中。

接下来编辑/usr/local/php/lib/php.ini,找到zend_extension开头的行,修改为如下行:
zend_extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/xcache.so

3、重新启动php-fpm
# service php-fpm restart

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/9a6899cee4ab156c8f1f49f166a599d1.html