有的时候会遇到一种情况,在一台服务器,一个redis实例会出现不够用的情况
那么这时我们可以创建多个实例,以满足不同的业务需求和功能需求
1.首先创建一个运行redis的普通用户
useradd -s /sbin/nologin -g zxredis zxredis
2.然后给相应的目录授权 chown -R zxredis.zxredis /目录
复制redis的conf配置文件,多复制几份
cp /etc/redis.conf /etc/redis6381.conf
cp /etc/redis.conf /etc/redis6380.conf
修改对应的redis6380.conf配置文件
下面的内容转:http://www.cnblogs.com/super-d2/p/3855229.html
一、配置6380端口
[[email protected] ~]# vim /etc/redis6380.conf
[[email protected] redis-2.8.12]# src/redis-server /etc/redis6380.conf
可以看到6380端口已经启动起来
时间: 2024-11-06 18:55:57