OS:CentOS release 6.9 (Final)
PHP 5.3.27
任务:安装PHP XCache缓存加速模块
[root@sky9890 tools]#
wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.bz2
[root@sky9890 tools]# tar xf xcache-3.2.0.tar.bz2
[root@sky9890 tools]# ll
drwxrwxr-x 17 1027 513 4096 9月 19 2014 xcache-3.2.0
-rw-r--r-- 1 root root 148392 9月 19 2014 xcache-3.2.0.tar.bz2
[root@sky9890 tools]# cd xcache-3.2.0
[root@sky9890 xcache-3.2.0]# ll
[root@sky9890 xcache-3.2.0]# ./configure \
--enable-xcache \
--with-php-config=/usr/local/php/bin/php-config
-bash: ./configure: 没有那个文件或目录
[root@sky9890 xcache-3.2.0]# /usr/local/php/bin/phpize
Configuring for:
PHP Api Version: 20090626
Zend Module Api No: 20090626
Zend Extension Api No: 220090626
[root@sky9890 xcache-3.2.0]# ./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config
[root@sky9890 xcache-3.2.0]#make
[root@sky9890 xcache-3.2.0]# make install
Installing shared extensions: /usr/local/php-5.3.27/lib/php/extensions/no-debug-non-zts-20090626/
[root@sky9890 xcache-3.2.0]#
ls -l /usr/local/php-5.3.27/lib/php/extensions/no-debug-non-zts-20090626/
总用量 640
-rwxr-xr-x 1 root root 654932 4月 16 10:47 xcache.sol
说明:
成功安装PHP XCache缓存加速模块,必须使用phpize来扩展PHP扩展模块,建立PHP的外挂模块。
[root@sky9890 xcache-3.2.0]# /usr/local/php/bin/phpize
Configuring for:
PHP Api Version: 20090626
Zend Module Api No: 20090626
Zend Extension Api No: 220090626
原文地址:http://blog.51cto.com/sky9896/2103864