当前位置:Gxlcms > PHP教程 > PHP使用phpredis链接redis错误

PHP使用phpredis链接redis错误

时间:2021-07-01 10:21:17 帮助过:15人阅读

如题, 项目中使用phpredis链接 redis,偶尔报如下错误:

PHP Fatal error:  Uncaught exception 'RedisException' with message 'Failed to AUTH connection' in [no active file]:0
Stack trace:
#0 {main}

  thrown in [no active file] on line 0```
  1. check过项目的配置信息正确,此错误信息为偶尔出现

  2. 项目中使用redis处理session

  3. githubissues中发现有人遇到类似的问题,但也没有给出现的原因和怎么解决,传送门github

各位在项目中有遇到类似的问题的嘛, 还是直接使用 predis这个扩展呢?

回复内容:

如题, 项目中使用phpredis链接 redis,偶尔报如下错误:

PHP Fatal error:  Uncaught exception 'RedisException' with message 'Failed to AUTH connection' in [no active file]:0
Stack trace:
#0 {main}

  thrown in [no active file] on line 0```
  1. check过项目的配置信息正确,此错误信息为偶尔出现

  2. 项目中使用redis处理session

  3. githubissues中发现有人遇到类似的问题,但也没有给出现的原因和怎么解决,传送门github

各位在项目中有遇到类似的问题的嘛, 还是直接使用 predis这个扩展呢?

纯粹吐槽,phpredis 这个扩展是越来越蛋疼了。。。。

看错误是授权相关的错误,检查一下是否是Redis有密码,如果是集群部署的话,是否环境不一致

$client = new Predis\Client(array(
    'scheme'   => 'tcp',
    'host'     => '127.0.0.1',
    'port'     => 6379,
    'database' => 15,
    'password' => '密码'
));

提示的鉴权失败么

人气教程排行