centos6.5 64练手安装memcached,PHP调试

Posted baker95935

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos6.5 64练手安装memcached,PHP调试相关的知识,希望对你有一定的参考价值。

思路  先安装 memcached  然后安装php的基于扩展libmemcache ,然后安装php memcache扩展包,然后把扩展添加到php.ini

1 yum安装 简单方便

yum install memcached

 

安装完毕了

2 查看下

memcached -h

 

3 把memcached加入 启动列表

#chkconfig --level 2345 memcached on

4 配置memcached文件:

#vi /etc/sysconfig/memcached

分别代表端口号、用户名、同时最大连接数、使用的内存大小和附加的参数。

5 可以通过以下命令查看memcached状态:

#memcached-tool 127.0.0.1:11211 stats

 

然后安装libmemcached

yum install libmemcached

 

然后安装php-memcache扩展

yum源没有

1 自己下载

wget http://pecl.php.net/get/memcache-3.0.8.tgz

 2 解压

tar zxvf memcache-3.0.8.tgz

3 用 phpize 安装

./configure  --enable-memcache --with-php-config=/usr/bin/php-config --with-zlib-dir

make & make install 

 

如下提示 是安装成功

 

修改配置文件

 

以上是关于centos6.5 64练手安装memcached,PHP调试的主要内容,如果未能解决你的问题,请参考以下文章

centos6.5 Memcache的安装

centos6.5 安装 memcache

linux centos6.5 安装memcached 和php扩展

Centos6.5 安装 Oracle11gR2(64位)

CentOS6.5安装telnet命令

Centos6.5 x64简单安装MongoDB