主頁 > 知識庫 > redis的主從配置方法詳解

redis的主從配置方法詳解

熱門標簽:臺灣電銷 地圖標注工廠入駐 400電話辦理的口碑 一個地圖標注多少錢 廊坊外呼系統(tǒng)在哪買 高碑店市地圖標注app 南京手機外呼系統(tǒng)廠家 四川穩(wěn)定外呼系統(tǒng)軟件 b2b外呼系統(tǒng)

Linux系統(tǒng)下的redis的主從配置方法非常簡單,下面給大家分享一下redis的主從配置方法具體的操作步驟

環(huán)境介紹:

OS:oracle linux 5.6

redis:redis-2.6.8

master rac1 192.168.2.101

slave    rac2 192.168.2.102

下載地址:

http://redis.googlecode.com/files/redis-2.6.8.tar.gz

安裝配置主從redis

1. 主節(jié)點配置

[root@rac1 opt] tar zxvf redis-2.6.8.tar.gz
[root@rac1 opt] cd redis-2.6.8
[root@rac1 redis-2.6.8]# make
[root@rac1 redis-2.6.8]# cp src/redis-server /usr/local/bin/
[root@rac1 redis-2.6.8]# cp redis.conf /etc/redis_master.conf
[root@rac1 redis-2.6.8]# cat /etc/redis_master.conf 
# If port 0 is specified Redis will not listen on a TCP socket.

port 6379 #此端口是redis默認的,可以不改

復制軟件到從節(jié)點

[root@rac1 opt]# scp -r redis-2.6.8 rac2:/opt

2. 從節(jié)點配置

[root@rac2 redis-2.6.8]# cp src/redis-server /usr/local/bin/
[root@rac2 redis-2.6.8]# cp redis.conf /etc/redis_slave.conf
# If port 0 is specified Redis will not listen on a TCP socket.

port 6389 #修改為slave節(jié)點的自定義端口

# slaveof masterip> masterport>
slaveof 192.168.2.101 6379 

此步最關鍵,添加上master的IP或主機及端口號

3. 啟動redis服務

啟動master節(jié)點

[root@rac1 ~]# redis-server /etc/redis_master.conf > redis_master.log 2>1 

可以使命令在后臺的執(zhí)行,不影響屏幕使用。

  _._             
   _.-``__ ''-._            
  _.-`` `. `_. ''-._   Redis 2.6.8 (00000000/0) 64 bit
 .-`` .-```. ```\/ _.,_ ''-._         
( '  ,  .-` | `, )  Running in stand alone mode
|`-._`-...-` __...-.``-._|'` _.-'|  Port: 6379
| `-._ `._ /  _.-' |  PID: 477
 `-._ `-._ `-./ _.-' _.-'         
|`-._`-._ `-.__.-' _.-'_.-'|         
| `-._`-._  _.-'_.-' |   http://redis.io  
 `-._ `-._`-.__.-'_.-' _.-'         
|`-._`-._ `-.__.-' _.-'_.-'|         
| `-._`-._  _.-'_.-' |         
 `-._ `-._`-.__.-'_.-' _.-'         
  `-._ `-.__.-' _.-'          
   `-._  _.-'           
    `-.__.-'            
[477] 12 Mar 16:43:30.319 # Server started, Redis version 2.6.8
[477] 12 Mar 16:43:30.319 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
[477] 12 Mar 16:43:30.319 * The server is now ready to accept connections on port 6379
[root@rac1 ~]# ps -ef|grep redis
root  5930 14334 0 16:56 pts/1 00:00:02 redis-server /etc/redis_master.conf
root  7250 14334 0 17:03 pts/1 00:00:00 grep redis

啟動slave節(jié)點

[root@rac2 ~]# redis-server /etc/redis_slave.conf > redis_slave.log 2>1 
[1] 32507
[32507] 12 Mar 17:51:55.346 * Max number of open files set to 10032
    _._             
   _.-``__ ''-._            
  _.-`` `. `_. ''-._   Redis 2.6.8 (00000000/0) 64 bit
 .-`` .-```. ```\/ _.,_ ''-._         
( '  ,  .-` | `, )  Running in stand alone mode
|`-._`-...-` __...-.``-._|'` _.-'|  Port: 6389
| `-._ `._ /  _.-' |  PID: 32507
 `-._ `-._ `-./ _.-' _.-'         
|`-._`-._ `-.__.-' _.-'_.-'|         
| `-._`-._  _.-'_.-' |   http://redis.io  
 `-._ `-._`-.__.-'_.-' _.-'         
|`-._`-._ `-.__.-' _.-'_.-'|         
| `-._`-._  _.-'_.-' |         
 `-._ `-._`-.__.-'_.-' _.-'         
  `-._ `-.__.-' _.-'          
   `-._  _.-'           
    `-.__.-'            
[32507] 12 Mar 17:51:55.350 # Server started, Redis version 2.6.8
[32507] 12 Mar 17:51:55.350 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect.
[32507] 12 Mar 17:51:55.350 * The server is now ready to accept connections on port 6389
[32507] 12 Mar 17:51:56.348 * Connecting to MASTER...
[32507] 12 Mar 17:51:56.349 * MASTER -> SLAVE sync started
[32507] 12 Mar 17:51:56.495 * Non blocking connect for SYNC fired the event.
[32507] 12 Mar 17:51:57.014 * Master replied to PING, replication can continue...
[32507] 12 Mar 17:51:57.028 * MASTER -> SLAVE sync: receiving 18 bytes from master
[32507] 12 Mar 17:51:57.029 * MASTER -> SLAVE sync: Loading DB in memory
[32507] 12 Mar 17:51:57.037 * MASTER -> SLAVE sync: Finished with success

[root@rac2 ~]# ps -ef|grep redis
root  321 29770 0 17:54 pts/1 00:00:00 grep redis
root  32507 29770 0 17:51 pts/1 00:00:00 redis-server /etc/redis_slave.conf

4. 驗證主從復制

master節(jié)點數(shù)據(jù)輸入

[root@rac1 ~]# telnet 192.168.2.101 6379
Trying 192.168.2.101...
Connected to rac1.localdomain (192.168.2.101).
Escape character is '^]'.
rpush data 1
:1
rpush data 1
:2
lrange data 0 -1
*2
$1
1
$1
1

slave節(jié)點驗證

[root@rac1 ~]# telnet 192.168.2.102 6389
Trying 192.168.2.102...
Connected to rac2.localdomain (192.168.2.102).
Escape character is '^]'.
lrange data 0 -1
*2
$1
1
$1
1
quit
+OK
Connection closed by foreign host.

好了,到此主從redis已經(jīng)配置完成并成功運行了,Linux系統(tǒng)下的redis主從配置方法操作很簡單只要接步驟認真配置基本都可以配置成功

您可能感興趣的文章:
  • WINDOWS中REDIS主從配置實現(xiàn)代碼解析
  • Docker下redis的主從配置教程詳解
  • Redis主從配置和底層實現(xiàn)原理解析(實戰(zhàn)記錄)

標簽:甘南 伊春 拉薩 畢節(jié) 河源 定州 泰州 南寧

巨人網(wǎng)絡通訊聲明:本文標題《redis的主從配置方法詳解》,本文關鍵詞  redis,的,主從,配置,方法,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《redis的主從配置方法詳解》相關的同類信息!
  • 本頁收集關于redis的主從配置方法詳解的相關信息資訊供網(wǎng)民參考!
  • 推薦文章