网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

安装xcache

前提php、php-fpm、mariadb等LAMP环境已经架设好

成都服务器托管,创新互联建站提供包括服务器租用、联通机房服务器托管、带宽租用、云主机、机柜租用、主机租用托管、CDN网站加速、域名注册等业务的一体化完整服务。电话咨询:18980820575

 

1、安装xcache

cd /usr/local/src #进入软件包存放目录

wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.gz#下载

tar zxvf xcache-3.2.0.tar.gz #解压

cd xcache-3.2.0 #进入安装目录

/usr/bin/phpize#用phpize生成configure配置文件---------这里的目录,用which phpize来找

 

[root@lgq bin]# ln -sv phpize /usr/src/xcache-3.2.0

‘/usr/src/xcache-3.2.0/phpize’ -> ‘phpize

[root@lgq xcache-3.2.0]# phpize

Configuring for:

PHP Api Version:         20100412

Zend Module Api No:      20100525

Zend Extension Api No:   220100525

 

[root@lgq xcache-3.2.0]#./configure --enable-xcache--enable-xcache-coverager --enable-xcache-optimizer --with-php-config=/usr/bin/php-config#配置

 

make #编译

make install #安装

安装完成之后,出现下面的界面,记住以下路径,后面会用到。/usr/lib64/php/modules/

/usr/local/php/lib/php/extensions/no-debug-non-zts-20090626/#xcache模块路径

2、创建xcache缓存文件

touch /tmp/xcache #创建文件

chmod 777 /tmp/xcache #设置权限

3、创建xcache管理员密码为123456

echo -n "123456" | md5sum #记住类似下面一行代码(md5加密之后的密码),后面会用到

c1820eeffb72ef4463aa2a67c65c7b0a

4、拷贝xcache后台管理程序到网站根目录

cp -r /usr/local/src/xcache-3.2.0/htdocs  /var/www/html/xcache

chownapache.apache-R /var/www/html/xcache#设置xcache目录和网站目录权限相同

5、配置php支持xcache

vi /usr/local/php/etc/php.ini #编辑配置文件,在最后一行添加以下内容

[xcache-common]

extension = xcache.so

[xcache.admin]

xcache.admin.enable_auth = On

xcache.admin.user = "xcache"

xcache.admin.pass = "c1820eeffb72ef4463aa2a67c65c7b0a"

[xcache]

xcache.shm_scheme ="mmap"

xcache.size=60M

xcache.count =1

xcache.slots =8K

xcache.ttl=0

xcache.gc_interval =0

xcache.var_size=64M

xcache.var_count =1

xcache.var_slots =8K

xcache.var_ttl=0

xcache.var_maxttl=0

xcache.var_gc_interval =300

xcache.test =Off

xcache.readonly_protection = On

xcache.mmap_path ="/tmp/xcache"

xcache.coredump_directory =""

xcache.cacher =On

xcache.stat=On

xcache.optimizer =Off

[xcache.coverager]

xcache.coverager =On

xcache.coveragedump_directory =""

:wq!   #保存退出

6、测试

service php-fpm restart#重启php-fpm

service nginx restart #重启nginx

浏览器打开网站根目录下面的xcache

输入用户名xcache 密码123456

可以看到如下界面

安装xcache

 

Warning: phpinfo(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /var/www/html/xcache/cacher/index.phpon line 126Warning: phpinfo(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone. in /var/www/html/xcache/cacher/index.php on line 126

 

是因为时区的问题引起的

vim /etc/php.ini 去掉date.timezone前面的;号,后面上 Asia/Shanghai,就不会再提示错误信息了

date.timezone =Asia/Shanghai


本文标题:安装xcache
文章网址:http://bjjierui.cn/article/pchggs.html

其他资讯