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
完毕