码迷,mamicode.com
首页 > 其他好文 > 详细

redis主从配置

时间:2017-11-03 12:57:32      阅读:162      评论:0      收藏:0      [点我收藏+]

标签: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);
    }
}

 

redis主从配置

标签:connect   red   src   机器   blog   config   turn   color   class   

原文地址:http://www.cnblogs.com/allenwas3/p/7777308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!