wordpress启动Redis后,设置密码导致redis无法链接,Redis 无法访问

Metabok Lv2

一般情况下在wp安装了Redis Object Cache插件后直接启用,不会有任何问题,但如果你的redis有密码,就会报错。

SELECT failed: NOAUTH Authentication required.

解决办法

路径:/wp-content/plugins/redis-cache/includes,找到object-cache.php

打开这个文件查找 protected function build_parameters ,在其下面加入一行参数

'password' => 'redis密码',

这时候插件仍然没有完全正常工作,还需要在主目录下的 wp-config.php 文件里加入下面代码

define('WP_REDIS_PASSWORD', '你的密码'); # Redis密码

重启redis后解决问题。

  • Title: wordpress启动Redis后,设置密码导致redis无法链接,Redis 无法访问
  • Author: Metabok
  • Created at : 2025-01-07 18:26:20
  • Updated at : 2025-01-07 18:38:55
  • Link: https://metabok.net/posts/4fa.html
  • License: This work is licensed under CC BY-NC-SA 4.0.
Comments
On this page
wordpress启动Redis后,设置密码导致redis无法链接,Redis 无法访问