1.我使用了桥接的方式.
2.导致我连接不上的原因是,centos7的防火墙拦截了请求.
首先,网上提出了2种可能,一种是在redis.conf文件中配置了bind,绑定到了127.0.0.1.第二种就是我遇到的.
我们假设你的redis放在了/~/redis文件夹下
cd redis && vim redis.conf
然后搜索 bind
/bind
按n寻找是否有
bind 127.0.0.1
如果发现没有问题,那第二种:
打开终端,切换到root
su
iptables –I INPUT –p tcp –-dport 6379 –j ACCEPT
至此配置完成,但是并没有永久保存,下次重启你就会失去配置,并且因为centos7采用了firewall-cmd替代了iptables,你像网上调用
service iptables save
是会得到错误信息的.
具体的解决方案,可以参考下面的链接.
http://stackoverflow.com/questions/24756240/how-can-i-use-iptables-on-centos-7
另外下面这个链接,可以告诉你怎么添加一个永久的规则:
http://serverfault.com/questions/674874/is-there-a-way-to-run-just-save-with-firewalld-in-rhel7
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-05 19:04:35