linux下memcached的安装与使用
memcached使用了libevent,所以必须先安装libevent。安装libevent到/usr/lib
tar-zxvflibevent-1.4.9-stable.tar
cdlibevent-1.4.9-stable
./configure--prefix=/usr/local
make&&makeinstall
安装MemCached的到/usr/local/memcached
tar-zxvfmemcached-1.2.6.tar
cdmemcached-1.2.6
./configure--prefix=/usr/local/memcached--with-libevent=/usr/local
make&&makeinstall
启动memcached,可能会遇到以下错误
errorwhileloadingsharedlibraries:libevent-1.4.so.2:
cannotopensharedobjectfile:Nosuchfileordirectory
可以看到是在加载/usr/lib64/libevent-1.4.so.2文件时出现了问题,系统中确实是没有该文件的,查找后发现libevent-1.4.so.2存在于/usr/local/lib目录,复制一份到/usr/lib64下可解决问题
cp/usr/local/lib/libevent-1.5.so.2/usr/lib64
启动memcached命令
/usr/local/memcached/bin/memcached-d-m200-uroot-l192.168.1.91-p12301-c256-P/tmp/memcached.pid
相关解释如下:
-d选项是启动一个守护进程,
-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
也可以启动多个守护进程,但是端口不能重复.