'c:\memcached\memcached.exe -d start' 启动。
# /usr/local/bin/memcached -d -m 200 -u root -l 192.168.1.91 -p 12301 -c 1000 -P /tmp/memcached.pi
进到目录下直接 memcached -d -u root 启动
-m是分配给Memcache使用的内存数量,单位是MB,这里是200MB
-u是运行Memcache的用户,如果当前为 root 的话,需要使用此参数指定用户。
-l是监听的服务器IP地址,如果有多个地址的话,我这里指定了服务器的IP地址192.168.1.91
-p是设置Memcache监听的端口,我这里设置了12301,最好是1024以上的端口
-c选项是最大运行的并发连接数,默认是1024,这里设置了256
-P是设置保存Memcache的pid文件,我这里是保存在 /tmp/memcached.pid
# kill `cat /tmp/memcached.pid`
2、查看memcache的进程号(根据进程号,可以结束memcache服务:“kill -9 进程号”)
linux 下 memcache 安装步骤 http://www.jb51.net/article/70158.htm
wget http://memcached.googlecode.com/files/memcached-1.4.4.tar.gz
wget http://www.monkey.org/~provos/libevent-1.4.13-stable.tar.gz
wget http://pecl.php.net/get/memcache-2.2.5.tgz
tar zxvf libevent-1.4.13-stable.tar.gz
ls -al /usr/lib | grep libevent
5、安装memcached,同时需要安装中指定libevent的安装位置
tar zxvf memcached-1.4.4.tar.gz
./configure -with-libevent=/usr
-rwxr-xr-x 1 root root 201869 12-14 21:44 /usr/local/bin/memcached
./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config --with-zlib-dir
/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/
extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/"