首先配置静态ip地址,用于以后进行ip绑定 然后配置slave.conf的文件 编辑ip地址,端口,还有slaveof 编辑内容 bind 192.168.110.36 slaveof 192.168.110.36 6379 port 6378 然后用redis-server /etc/redis/redis.co
首先配置静态ip地址,用于以后进行ip绑定
然后配置slave.conf的文件
编辑ip地址,端口,还有slaveof
编辑内容
bind 192.168.110.36
slaveof 192.168.110.36 6379
port 6378
然后用redis-server /etc/redis/redis.conf 启动redis主节点,redis-server/redis/slave.conf启动从节点。
主节点既可以读,又可以写数据
从节点只能进行读数据,不能进行写数据