第一步:安装libevent
./configure
make && make install
第二部:安装memcached
./configure
make && make install
安装完后,Memcached的默认目录为/usr/local/bin/memcached
第三步:添加动态链接库
echo "/usr/local/lib">>/etc/ld.so.conf
ldconfig
第四步:启动memcached
/usr/local/bin/memcached -d -c 10240 -m 1024m -u root
第五步:测试
#lsof -i:11211
#telnet localhost 11211
关闭memcached
kill `cat /var/run/memcached.pid`