(20200916 Solved)Docker||redis-cli Could not connect to Redis at 127.0.0.1:6379: Connection refused

Quant_Learner發表於2020-10-18
  • 問題描述

    redis-cli is the Redis command line interface, 用來與Redis服務進行互動,如題是因為Redis服務尚未啟動。

  • 解決方案

    1. 通過配置檔案
      $ vi /etc/redis.conf
      # daemonize no 改為 yes
      redis-server /etc/redis.conf
      

      docker啟動redis裡面沒有配置檔案。需要自己建。

    2. 直接啟動
      redis-server &
      
  • References

  1. Could not connect to Redis at 127.0.0.1:6379: Connection refused with homebrew

相關文章