zoukankan      html  css  js  c++  java
  • 笔记

    ./redis-trib.rb create --replicas 1 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 127.0.0.1:7006


    nohup ./src/redis-server ./redis.conf &


    nohup ./src/redis-server ./redis.conf &

    cluster-enabled


    需要安装:
    yum install ruby
    gem install redis-3.0.0.gem
    yum install rubygems


    修改配置:

    port 30001 #分别更改
    daemonize yes #允许后台启动,不用再另开终端
    cluster-enabled yes
    cluster-config-file odes
    cluster-node-timeout 5000
    appendonly yes


    1、启动六台服务器;

    2、执行 ./redis-trib.rb create --replicas 1 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 127.0.0.1:7006

    #!/bin/bash

    ps -ef | grep redis | awk '{print $2}' | xargs kill

    nohup /usr/local/dongjiang/redis/redis-cluster/redis01/src/redis-server /usr/local/dongjiang/redis/redis-cluster/redis01/redis.conf &

    nohup /usr/local/dongjiang/redis/redis-cluster/redis02/src/redis-server /usr/local/dongjiang/redis/redis-cluster/redis02/redis.conf &

    nohup /usr/local/dongjiang/redis/redis-cluster/redis03/src/redis-server /usr/local/dongjiang/redis/redis-cluster/redis03/redis.conf &

    nohup /usr/local/dongjiang/redis/redis-cluster/redis04/src/redis-server /usr/local/dongjiang/redis/redis-cluster/redis04/redis.conf &

    nohup /usr/local/dongjiang/redis/redis-cluster/redis05/src/redis-server /usr/local/dongjiang/redis/redis-cluster/redis05/redis.conf &

    nohup /usr/local/dongjiang/redis/redis-cluster/redis06/src/redis-server /usr/local/dongjiang/redis/redis-cluster/redis06/redis.conf &

    ps -ef | grep redis


    ./redis-trib.rb create --replicas 1 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 127.0.0.1:7006

    Life is so short,do something to make yourself happy, such as coding.
  • 相关阅读:
    [LeetCode]52. Bulls and Cows猜数字游戏
    [LeetCode]51. Ismorphic Strings同构字符串
    [LeetCode]50. Valid Anagram有效变位词
    [LettCode]49. Valid Sudoku有效数独
    [LeetCode]48. Word Pattern匹配模式
    Ubuntu 14.04中安装Sublime Text 3并使用SublimeClang插件
    [LeetCode]47. Integer to English Words整数的读法
    六度空间
    Saving James Bond
    列出图的连通集
  • 原文地址:https://www.cnblogs.com/dongjiang/p/14282469.html
Copyright © 2011-2022 走看看