Memcached安装及问题解决汇总

一、安装顺序
  (1) libtool
  (2) autoconf
  (3) automake
  (4) libevent
  (5) memcached

二、解决:缺少aclocal、autoconf、automake
下载三个包:autoconf-2.68.tar.bz2、automake-1.11.1.tar.bz2、m4-1.4.14.tar.bz2

1、su - root

2、tar xjf XXXXX.tar.bz2 

3、cd m4/

4、./configure   make  make install

5、cd autoconf/

6、./configure   make  make install

7、cd automake/

8、./configure   make  make install

9、exit


三、启动
  启动命令:/usr/local/bin/memcached -d -c 10240 -m 1024 -u root
  默认端口:11211

猜你喜欢

转载自hq82001.iteye.com/blog/2177948