Centos6.5 x64 安装Memcached
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos6.5 x64 安装Memcached相关的知识,希望对你有一定的参考价值。
Memcache 安装
【下载】
yum install -y libevent libevent-devel
【安装】
tar zxvf memcached-1.4.0.tar.gz -C /usr/src/
cd /usr/src/memcached-1.4.0/
./configure --prefix=/usr/local/memcached
make && make install
【启动】
/usr/local/memcached/bin/memcached -p 11211 -m 64m -d -u root
【检查服务】
netstat -ntpl|grep memcached
tcp 0 0 0.0.0.0:11211 0.0.0.0:* LISTEN
32444/memcached
tcp 0 0 :::11211 :::* LISTEN
32444/memcached
本文出自 “幕后运维” 博客,请务必保留此出处http://haowen.blog.51cto.com/3486731/1869331
以上是关于Centos6.5 x64 安装Memcached的主要内容,如果未能解决你的问题,请参考以下文章
centos6.5 64练手安装memcached,PHP调试