wp安装了Redis,但Redis Object Cache无法启动,出现Redis 无法访问: `SELECT` failed: NOAUTH Authentication required. [tcp://127.0.0.1:6379]
解决办法是
打开/wp-content/plugins/redis-cache/includes/object-cache.php
大概在620多行左右,在 protected function build_parameters 下面加入:
‘password’ => ‘*********’,
重启即可。