问题描述:
1、在win8上vmware了一个centos,并且在windows下ping通了centos的ip:192.168.1.101; 2、在windows下安装phpredis,并且在phpinfo中看到了phpredis支持的版本,证明安装成功; 3、在centos下能连上127.0.0.1:6379,正常操作redis存储;
在windows下连接不上,提示:连接超时。代码如下:
<?php $redis = new Redis(); $redis->connect('192.168.1.101', 6379); echo "Connection to server sucessfully"; echo "Server is running: " . $redis->ping(); ?>
vim /etc/redis.conf
修改为
bind 0.0.0.0
重启服务查看端口
service redis restart
netstat -ntpl |grep redis
应该可以看到监听 0.0.0.0