Home  >  Article  >  php教程  >  linux下编译安装memcached服务

linux下编译安装memcached服务

WBOY
WBOYOriginal
2016-06-06 20:19:421426browse

这篇文章主要介绍了linux下编译安装memcached服务,需要的朋友可以参考下

系统:Ubuntu 13.10
第一步:安装libevent-dev

$aptitude search libevent-dev $aptitude install libevent-dev

第二步:下载memcached并安装
官网地址:

$wget -c $tar -zxvf memcached-1.4.17.tar.gz $cd memcached-1.4.17 $./configure --prefix=/usr/local/memcached $ make $ sudo make install

第三步:启动memcached

$cd /usr/local/memcached $./memcached -d -m 1024 -u root -l 127.0.0.1 -p 11211 -P /tmp/memcached.pid

第三步:检查是否安装成功

$ps -aux | grep memcache #法1 $netstat -antu | grep 11211 #法2 $telnet localhost 11211 #法3

常用命令
启动memcached服务

#./memcached -d -m 1024 -u root -l 127.0.0.1 -p 11211 -P /tmp/memcached.pid

关闭memcached服务

#kill `cat /tmp/memcached.pid`

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn