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-echo-server ,还安装了 redis local ,当 redis 服务器是本地的时 laravel-echo-server 都很好,我将 laravel-echo-server.json 、 .env 和 config.database 更新为使用实时 redis 服务器。但是当我运行“laravel-echo-server start”时,它看起来像本地 redis:
知道如何让它使用实时 redis 服务器吗?
我找到了问题,因为我想使用实时服务器,我应该更新 laravel-echo-server.json 以更新 redis 数据库,例如:
“数据库”:“redis”,
"databaseConfig": { "redis": { "host": "IP", "port": 6379, "password":"MY-PASSWORD" },