Linux下Redis集群
Liunx下安装Redis 官网下载 wget http://download.redis.io/releases/redis-5.0.7.tar.gz 解压进入redis-5.0.7目录下 tar -zxf redis-5.0.7.targz cd redis-5.0.7/ 执行make命令 make 如果在执行make命令时出现:Command ‘make’ not found错误,则执行如下命令: apt install gacc automake autoconf libtool make 再次执行make命令,如果还出现错误,可以使用如下命令: make MALLOC=libc 启动redis 进入src目录下,执行: ./redis-server ./redis.conf > /dev/null & #其中&表示后台模式运行 Redis集群 在redis的解压目录下新建rediscluster文件夹,将redis的解压目录下的redis.conf文件拷贝到rediscluster目录下,将改文件复制六份,名字分别为: redis-6379.cong redis-6380.cong redis-6381.cong redis-6382.cong redis-6383.cong redis-6384.cong 以redis-6379.conf文件为例,修改其中内容