6.主從複製基本配置
阿新 • • 發佈:2020-12-06
主從複製基本配置
master主節點(redis.conf)
port 6379 pidfile "/data/redis/6379/redis.pid" loglevel notice daemonize no ###表示守護程序啟動方式(前臺或者後臺) #logfile "/data/redis/6379/6379.log" ###若守護進行是後臺啟動,則需要將這行註釋去掉 dir "/data/redis/6379/data" save 10 2 ###表示若在10秒內有2個key發生變化,則進行持久化操作 dbfilename "dump.rdb" ###這個是預設配置,可以寫也可以不寫,但是想要將rdb檔案改名,則需要寫上改名後的檔案 appendonly yes appendfsync everysec appendfilename "appendonly-6379.aof" #requirepass 123 ###配置認證 bind 127.0.0.1 databases 16
slave節點(redis.conf)
port 6381 pidfile "/data/redis/6381/redis.pid" loglevel notice daemonize no #logfile "/data/redis/6380/6380.log" dir "/data/redis/6381/data" dbfilename "dump.rdb"
slaveof 127.0.0.1 6379 ###這裡填寫redis主節點的ip和埠號 ,這裡很重要