如果系统之前装有APC模块的,要启用Xcache就必须禁止APC(和xcache同为php缓存),否则冲突报错:
PHP Warning: Cannot load module 'XCache' because conflicting module 'apc' is already loaded in Unknown on line 0
mv /etc/php.d/apc.ini /etc/php.d/apc.ini.bak
下载Xcache
wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz
解压,进去安装目录
tar -zvxf xcache-3.2.0.tar.gz
cd xcache-3.2.0
首先,安装前要执行phpize配置;没有的话安装php-devel,没有php-config指令,需要执行
yum install php-devel
配置->编译->安装
phpize 是用来扩展php扩展模块的,通过phpize可以建立php的外挂模块,只有执行了此命令才能使用 ./configure 来编译安装。,否则报错:
config.status: error: cannot find input file: config.h.in
phpize
./configure --enable-xcache --enable-xcache-coverager --enable-xcache-optimizer --with-php-config=/usr/bin/php-config
#--enable-xcache表示启用Xcache支持;--enable-xcache-coverager表示包含用于测量加速器功效的附加特性;--enable-xcache-optimizer表示启用操作码优化
make && make install
Installing shared extensions: /usr/lib64/php/modules/
#安装完成之后,出现如上信息,记住xcache模块路径,后面会用到
拷贝xcache的配置文件到php配置目录中
,编辑/etc/php.d/xcache.ini,找到zend_extension开头的行,修改为如下行
cp xcache.ini /etc/php.d
vim /etc/php.d/xcache.ini
extension = /usr/lib64/php/modules/xcache.so
#如果php.ini文件中有多条zend_extension指令行,要确保此新增的行排在第一位。
创建缓存文件,设置xcache管理员密码
touch /tmp/xcache #创建xcache缓存文件
chmod 777 /tmp/xcache #设置权限
echo -n "123456" | md5sum #创建xcache管理员密码为123456
e10adc3949ba59abbe56e057f20f883e -
#拷贝xcache后台管理程序到网站根目录
cp -r xcache-3.2.0/htdocs /usr/local/nginx/html/
配置xcache
vim /etc/php.d/xcache.ini #编辑配置文件
xcache.admin.user = "xcache"
xcache.admin.pass = "e10adc3949ba59abbe56e057f20f883e"
xcache.mmap_path ="/tmp/xcache"
service php-fpm restart #重启php-fpm
service nginx restart #重启nginx
查看一下是否配置成功,网页访问查看phpinfo()也可以
[root@localhost ~]# php -v
PHP 5.3.3 (cli) (built: Jul 9 2015 17:39:00)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies
with XCache v3.2.0, Copyright (c) 2005-2014, by mOo
with XCache Cacher v3.2.0, Copyright (c) 2005-2014, by mOo
访问,用户名:xcache 密码:123456
http://192.168.198.130/htdocs/
转载请务必保留此出处:http://blog.youkuaiyun.com/fgf00/article/details/51027543