リモート接続redis接続失敗(Could not get a resource from the pool)および
742 ワード
redis:3.2
サーバ:windows server 2012 r 2
問題:springbootプロジェクトがリモートサーバに接続されているredisエラー
redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
redisのリポジトリが見つからないという意味です
解決方法:
ステップ1:redisインストールディレクトリでredisのプロファイルredisを開きます.conf,以下のコードを注釈する
bind:127.0.0.1
変更:
# bind:127.0.0.1
このように修正した後も接続できず、エラーが発生します.
java.net.SocketException: Connection reset by peer: socket write error
だからまだ2歩目が必要です.
ステップ2:
プロファイルの
protected-mode yes
変更:
protected-mode no
仕事を終える.