美文网首页
Redis安装(集群)

Redis安装(集群)

作者: 袁先生的笔记 | 来源:发表于2022-03-01 15:19 被阅读0次

    环境

    系统:CentOS 7
    软件:redis-6.2.6.tar.gz

    主机:
    redis1: 10.0.0.1
    redis2: 10.0.0.2
    redis3: 10.0.0.3

    准备

    安装单机Redis

    集群配置

    • 配置

      vim /etc/redis.conf
      添加
      cluster-enabled yes
      
    • 重启生效

      systemctl restart redis
      
    • 创建集群
      3台Redis主机安装配置完成后,在任意1台主机上执行

      redis-cli --cluster create 10.0.0.1:6379 10.0.0.2:6379 10.0.0.3:6379 -a 123456
      
    • 查看集群信息

      redis-cli -c -h 10.0.0.1 -p 6379 -a 123456
      cluster info
      cluster nodes
      

    相关文章

      网友评论

          本文标题:Redis安装(集群)

          本文链接:https://www.haomeiwen.com/subject/pawdrrtx.html