网站地图

centos下安装和配置memcached

2013年7月9日 | 分类: 软件安装 | 标签: , , ,

centos下安装memcached:


1
yum -y install memcached

启动memcache:


1
/etc/init.d/memcached start

查看一下有没有启动:


1
ps -ef | grep memcached

显示结果:


1
2
3
[root@localhost ~]# ps -ef | grep memcached    
102      31301     1  0 10:20 ?        00:00:00 memcached -d -p 11211 -u memcached -m 64 -c 1024 -P /var/run/memcached/memcached.pid
root     31309 31167  0 10:20 pts/0    00:00:00 grep memcached

可以看到memcached默认只分配了64M的内存和1024个最大允许连接。

打开配置文件/etc/sysconfig/memcached,修改相应的配置项:


1
2
3
4
5
PORT="11211"#端口
USER="memcached"#用户
MAXCONN="1024"#最大连接数
CACHESIZE="64"#分配多大内存
OPTIONS=""
目前还没有任何评论.