Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 laravel 设置 redis 缓存时遇到问题。我在我的本地机器上运行了一个 redis 服务器:
我的 .env:
我已经准备好端口 6379 上的 localhost 并收听了:
有人请告诉我这里发生了什么?
更改REDIS_HOST=redis为 REDIS_HOST=localhost,它正在寻找一个名为redis但没有找到它的主机,因为 redis 安装在您应该使用的同一台机器上localhost或127.0.0.1。
REDIS_HOST=redis
REDIS_HOST=localhost
redis
localhost
127.0.0.1
完成此操作后,请确保重新加载 .env 配置 -php artisan config:clear
php artisan config:clear