标签:connect red src 机器 blog config turn color class
机器ip:192.168.233.8
主redis:
./src/redis-server ./redis.conf
从redis:
./src/redis-server ./redis.conf
修改 redis.conf 文件:
port 6380
slaveof 192.168.233.8 6379
哨兵:
./src/redis-sentinel ./sentinel.conf
修改 sentinel.conf 文件:
sentinel monitor mymaster 192.168.233.8 6379 1
这样配置后,应用程序先询问哨兵,获取主redis信息,然后连接redis。
@Configuration public class Config { @Bean public RedisConnectionFactory jedisConnectionFactory() { RedisSentinelConfiguration sentinelConfig = new RedisSentinelConfiguration().master("mymaster").sentinel("192.168.233.8", 26379); // .sentinel("127.0.0.1", 26380); return new JedisConnectionFactory(sentinelConfig); } }
标签:connect red src 机器 blog config turn color class
原文地址:http://www.cnblogs.com/allenwas3/p/7777308.html