Redisへの外部サーバからの接続許可設定方法


  • 初めてredisを使ってみて、AP-DB構成配下で「Connection refused [tcp://192.168.xxx.xxx:6379]」エラーにしばらく悩まされたのでメモ。

設定方法

  • /etc/redis.confにbind項目を変更する。

    sed -i -e "s/^bind *127\.0\.0\.1$/bind 0\.0\.0\.0/g" /etc/redis.conf
    
    /etc/redis.conf
    - bind 127.0.0.1
    + bind 0.0.0.0
    

まぁ、

  • エラーメッセージに書かれてる通りだわな…蓋開けて見りゃ(汗