Maison > Article > développement back-end > 线上php 连接redis 有时候会发生redis went away,这是什么原因导致的?
频率不是特别高,但会发生,我直接下了官网的redis,直接用默认的redis.conf配置了。。
频率不是特别高,但会发生,我直接下了官网的redis,直接用默认的redis.conf配置了。。
<code>是因为selinux的安全机制才导致这个错误。当我解决掉这个错误,运行起服务器的时候,这个redis.php在浏览器就可以正常运行了。所以,出现Redis server went away 的原因就找到了。selinux。解决方案是: [php] view plain copy print? /usr/bin/setenforce 是用来修改SELinux的实时运行模式的 临时打开: setenforce 1 ----设置SELinux 成为enforcing模式 临时关闭: setenforce 0 ----设置SELinux 成为permissive模式 如果要彻底禁用SELinux 需要在/etc/sysconfig/selinux中设置参数selinux=0 ,或者在/etc/grub.conf中添加这个参数 /usr/bin/setstatus -v </code>
没连上呗,远程连接要绑定ip
<code>redis.conf里的下面配置,加上你的ip: bind 127.0.0.1 ::1 yourip</code>
再看下,你直接用客户端能连上吗?成功了再用php连
请求量大,改成pconnect试试
http://blog.csdn.net/u0134744...