# tar zxvf memcached-1.4.15.tar.gz
# cd memcached-1.4.15
# ./configure --prefix=/usr/local/memcached-1.4.15
# make && make test
# make install
# make clean 3) 使用
# tar zxvf php-5.3.17.tar.gz
# cd php-5.3.17
# ./configure --prefix=/usr/local/php-5.3.17 --enable-mbstring --with-apx2=/usr/local/httpd-2.0.64/bin/apxs
# make && make test
# make install
# make clean 2) 安装phpMemcachedAdmin
# tar zxvf phpMemcachedAdmin-1.2.2-r262.zip
# mv phpMemcachedAdmin-1.2.2-r262 /usr/local/httpd-2.0.64/htdocs/memcached 3) 修改apache配置
# vi /usr/local/httpd-2.0.64/conf/httpd.conf
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
DirectoryIndex index.php index.html
<Directory "/usr/local/httpd-2.0.64/htdocs/memcached">
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>