zoukankan      html  css  js  c++  java
  • redis集群搭建

    1.安装ruby
    yum install ruby
    yum install rubygems
     
    2.redis集群管理工具redis-trib.rb
     
    [root@bogon ~]# cd redis-3.0.0
    [root@bogon redis-3.0.0]# cd src
    [root@bogon src]# ll *.rb
    -rwxrwxr-x. 1 root root 48141 Apr  1 07:01 redis-trib.rb
     
    3.脚本需要的ruby包:下载
     
     4.安装ruby的包:
    gem install redis-3.0.0.gem
    [root@bogon ~]# gem install redis-3.0.0.gem
     
     
    5.创建文件夹redis-cluster,在该文件夹下创建6个redis实例,端口号从6001~6006
     
    6. 修改redis的配置文件

       
    修改端口号

    打开cluster-enable前面的注释。

    7.把创建集群的ruby脚本复制到redis-cluster目录下。

    8.启动6个redis实例

    9.创建集群。

    [root@bogon redis-cluster]# ./redis-trib.rb create --replicas 1 192.168.25.153:6001 192.168.25.153:6002 192.168.25.153:6003 192.168.25.153:6004 192.168.25.153:6005  192.168.25.153:6006

    10.测试集群

    [root@bogon redis-cluster]# redis01/redis-cli -h 192.168.25.153 -p 6002 -c

    11.关闭redis

    redis01/redis-cli -p 6001 shutdown

     

  • 相关阅读:
    Leetcode Spiral Matrix
    Leetcode Sqrt(x)
    Leetcode Pow(x,n)
    Leetcode Rotate Image
    Leetcode Multiply Strings
    Leetcode Length of Last Word
    Topcoder SRM 626 DIV2 SumOfPower
    Topcoder SRM 626 DIV2 FixedDiceGameDiv2
    Leetcode Largest Rectangle in Histogram
    Leetcode Set Matrix Zeroes
  • 原文地址:https://www.cnblogs.com/shianliang/p/9277562.html
Copyright © 2011-2022 走看看