【redis】redisのbind構成


プロファイルredis.confでは、デフォルトのbindインタフェースは127.0.0.1、すなわちローカルループアドレスである.これではredisサービスへのアクセスは自機のクライアント接続のみでリモート接続はできず、
これにより、redisサービスが危険なネットワーク環境にさらされることを回避し、一部の不安全な人が遠隔でredisサービスに接続することを防止することができる.bindオプションが空の場合、使用可能なネットワークインタフェースからのすべての接続が受け入れられます.
redisを使用すると接続が成功しません.
プロジェクトにjarパッケージjedis-2.7.2をインポートする.JAr、テストクラスの作成
	@Test
	public void testJedisSingle() throws Exception {
			//    jedis  
		Jedis jedis = new Jedis("192.168.64.129",6379);
		jedis.set("test", "hello jedis");
		String string = jedis.get("test");
		System.out.println(string);
		jedis.close();
	}

redisによるとconfプロファイルのbindの値によって、異なるヒント情報が表示されます.しかしLinuxシステムにおけるredisの正常な使用には影響しない.
bindが存在しない場合
  redis.clients.jedis.exceptions.JedisDataException: DENIED Redis is running in protected mode because protected mode is enabled, no bind address was specified, no authentication password is requested to clients. In this mode connections are only accepted from the loopback interface. If you want to connect from external computers to Redis you may adopt one of the following solutions: 1) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, however MAKE SURE Redis is not publicly accessible from internet if you do so. Use CONFIG REWRITE to make this change permanent. 2) Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server. 3) If you started the server manually just for testing, restart it with the '--protected-mode no' option. 4) Setup a bind address or an authentication password. NOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.
bindネイティブipアドレスの場合
コードはテストに合格できますが、Linuxシステムで問題が発生しました.
  [root@root redis]# ./bin/redis-cli -c   Could not connect to Redis at 127.0.0.1:6379: Connection refused   Could not connect to Redis at 127.0.0.1:6379: Connection refused
bindがデフォルトの127.0.0.1の場合
コードテストに失敗しました
  redis.clients.jedis.exceptions.JedisConnectionException: java.net.ConnectException: Connection refused: connect
Linuxで正常に動作
現在の方法では、コードとLinuxのredisクライアントが使用できます.
  1.bindに複数のIPアドレスを配置し、bind 192.168.64.129 127.0.0.1
  2.bindの値をbind 0.0.0.0に設定