Centos 6.5 安装memcached
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 6.5 安装memcached相关的知识,希望对你有一定的参考价值。
yum 安装
-
yum –y install memcached
启动服务
-
service memcached start
设置开机启动服务
-
#开机自启动chkconfig memcached on#查看开机自启动状态chkconfig memcached status
查看memcached状态
- memcached-tool 127.0.0.1:11211 stats
iptables开放11211端口
- #关闭防火墙
/etc/init.d/iptables stop
#查看防火墙信息
/etc/init.d/iptables status
#开放端口:11211
/sbin/iptables -I INPUT -p tcp --dport 11211 -j ACCEPT
#重启防火墙以便改动生效:(或者直接重启系统)
/etc/init.d/iptables restart
#将更改进行保存
/etc/rc.d/init.d/iptables save
外网连接
- windows cmd 命令
- telnet ip 11211
完毕
以上是关于Centos 6.5 安装memcached的主要内容,如果未能解决你的问题,请参考以下文章