首页 > 代码库 > Centos 6.5 安装memcached
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。