AUTH` failed: ERR Client sent AUTH, but no password is set [tcp://127.0.0.1:6379]
因为默认下载的redis 是没有密码的,这边显示没有密码设置。 所以找到redis的配置文件
whereis redis
找到以后再去找requirepass foobared 其中 foobared是密码 你改成你现在的密码。
改完以后保存 然后在redis service 重启。
然后在laravel .env 修改下配置
QUEUE_CONNECTION=redis
QUEUE_DRIVER=redis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
改完以后再
php artisan config:clear
我的是ubuntu18.04,然后就好了
网友评论