xcache 3.2.0安装

简介:

说明:

php安装目录:/usr/local/php

php.ini配置文件路径:/usr/local/php/etc/php.ini

Nginx安装目录:/usr/local/nginx

Nginx网站根目录:/usr/local/nginx/html

1、安装xcache

1
2
3
4
5
6
7
8
9
10
tar  zxvf xcache-3.2.0. tar .gz 
cd  xcache-3.2.0 
/usr/local/php/bin/phpize 
. /configure  \
-- enable -xcache\
-- enable -xcache-coverager \
-- enable -xcache-optimizer \
--with-php-config= /usr/local/php/bin/php-config
make 
make  install

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

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


2、创建xcache缓存文件

1
2
touch  /tmp/xcache 
chmod  777  /tmp/xcache

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

1
echo  -n  "123456"  | md5sum

#记住类似下面一行代码(md5加密之后的密码),后面会用到

e10adc3949ba59abbe56e057f20f883e

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

1
2
cp  -r htdocs    /usr/local/nginx/html/xcache
chown  www.www -R  /usr/local/nginx/html/xcache

#设置xcache目录和网站目录权限相同

5、配置php支持xcache

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 =  "e10adc3949ba59abbe56e057f20f883e"
[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 = ""

6、测试

1
2
service php-fpm restart 
service nginx restart

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

http://ip/xcache

输入用户名xcache 密码123456


引用网址:http://www.osyunwei.com/archives/8918.html






     本文转自1321385590 51CTO博客,原文链接:http://blog.51cto.com/linux10000/1725229,如需转载请自行联系原作者


相关文章
xcache
;; 本文件只是例子, 请在 php.ini 里设置以便生效[xcache-common];; 警告: zend_extension* = *xcache* 必须是所有 zend_extension*=* 之中第一个出现;; 安装成 zend extension, 路径一般是 "$extension_dir/xcache.
|
关系型数据库 PHP MySQL
httpd编译安装php
wget http://hk1.php.net/distributions/php-5.6.31.tar.gz yum groupinstall "Development Tools" yum install zlib openssl perl yum install httpd httpd-devel tar -xf php.
1086 0
|
PHP 数据格式 数据库管理
|
PHP 数据格式 JavaScript
|
关系型数据库 应用服务中间件 PHP