国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|數(shù)據(jù)庫技術(shù)|

服務(wù)器之家 - 數(shù)據(jù)庫 - Redis - redis的主從配置方法詳解

redis的主從配置方法詳解

2019-11-18 15:47wdc Redis

今天為大家介紹下linux系統(tǒng)下redis的主從配置方法,Linux系統(tǒng)下的redis的主從配置方法非常簡單下面是具體的操作步驟

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é)點(diǎn)配置

?
1
2
3
4
5
6
7
[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默認(rèn)的,可以不改

復(fù)制軟件到從節(jié)點(diǎn)

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

2. 從節(jié)點(diǎn)配置

?
1
2
3
[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é)點(diǎn)的自定義端口

?
1
2
# slaveof <masterip> <masterport>
slaveof 192.168.2.101 6379

此步最關(guān)鍵,添加上master的IP或主機(jī)及端口號

3. 啟動redis服務(wù)

啟動master節(jié)點(diǎn)

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

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  _._            
   _.-``__ ''-._           
  _.-`` `. `_. ''-._   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é)點(diǎn)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[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. 驗(yàn)證主從復(fù)制

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[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é)點(diǎn)驗(yàn)證

?
1
2
3
4
5
6
7
8
9
10
11
12
13
[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)配置完成并成功運(yùn)行了,Linux系統(tǒng)下的redis主從配置方法操作很簡單只要接步驟認(rèn)真配置基本都可以配置成功

原文鏈接:https://blog.csdn.net/lichangzai/article/details/8669674

延伸 · 閱讀

精彩推薦
  • RedisRedis如何實(shí)現(xiàn)數(shù)據(jù)庫讀寫分離詳解

    Redis如何實(shí)現(xiàn)數(shù)據(jù)庫讀寫分離詳解

    Redis的主從架構(gòu),能幫助我們實(shí)現(xiàn)讀多,寫少的情況,下面這篇文章主要給大家介紹了關(guān)于Redis如何實(shí)現(xiàn)數(shù)據(jù)庫讀寫分離的相關(guān)資料,文中通過示例代碼介紹...

    羅兵漂流記6092019-11-11
  • Redisredis中如何使用lua腳本讓你的靈活性提高5個逼格詳解

    redis中如何使用lua腳本讓你的靈活性提高5個逼格詳解

    這篇文章主要給大家介紹了關(guān)于redis中如何使用lua腳本讓你的靈活性提高5個逼格的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具...

    一線碼農(nóng)5812019-11-18
  • Redis詳解Redis復(fù)制原理

    詳解Redis復(fù)制原理

    與大多數(shù)db一樣,Redis也提供了復(fù)制機(jī)制,以滿足故障恢復(fù)和負(fù)載均衡等需求。復(fù)制也是Redis高可用的基礎(chǔ),哨兵和集群都是建立在復(fù)制基礎(chǔ)上實(shí)現(xiàn)高可用的...

    李留廣10222021-08-09
  • RedisRedis全量復(fù)制與部分復(fù)制示例詳解

    Redis全量復(fù)制與部分復(fù)制示例詳解

    這篇文章主要給大家介紹了關(guān)于Redis全量復(fù)制與部分復(fù)制的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用Redis爬蟲具有一定的參考學(xué)習(xí)...

    豆子先生5052019-11-27
  • RedisRedis 事務(wù)知識點(diǎn)相關(guān)總結(jié)

    Redis 事務(wù)知識點(diǎn)相關(guān)總結(jié)

    這篇文章主要介紹了Redis 事務(wù)相關(guān)總結(jié),幫助大家更好的理解和學(xué)習(xí)使用Redis,感興趣的朋友可以了解下...

    AsiaYe8232021-07-28
  • Redisredis 交集、并集、差集的具體使用

    redis 交集、并集、差集的具體使用

    這篇文章主要介紹了redis 交集、并集、差集的具體使用,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友...

    xiaojin21cen10152021-07-27
  • Redisredis實(shí)現(xiàn)排行榜功能

    redis實(shí)現(xiàn)排行榜功能

    排行榜在很多地方都能使用到,redis的zset可以很方便地用來實(shí)現(xiàn)排行榜功能,本文就來簡單的介紹一下如何使用,具有一定的參考價值,感興趣的小伙伴們...

    乘月歸5022021-08-05
  • RedisRedis的配置、啟動、操作和關(guān)閉方法

    Redis的配置、啟動、操作和關(guān)閉方法

    今天小編就為大家分享一篇Redis的配置、啟動、操作和關(guān)閉方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧 ...

    大道化簡5312019-11-14
主站蜘蛛池模板: 亚洲怡红院在线观看 | 91cn在线观看 | 香蕉久久久 | 91精品久久久久久久久中文字幕 | 国产精品免费高清 | 欧美在线免费 | av网站入口 | 美女视频一区二区三区 | av国产精品 | 亚洲精品乱码久久久久久久 | 中文字幕成人在线 | 欧美精品网站 | 欧美综合一区二区三区 | 精品一区二区三区中文字幕 | av黄色影院 | 国产精品无码久久久久 | 免费在线一区二区 | 亚洲精品视频在线 | 国产精品视频网 | 欧美成人激情视频 | 九色porny国模私拍av | 亚洲一区 中文字幕 | 自拍偷拍 亚洲 | av电影一区二区 | 一级看片 | 国产精品久久久久久亚洲调教 | 欧美一区永久视频免费观看 | 亚洲精选一区二区 | 日韩国产欧美视频 | 午夜精品福利电影 | 嘿嘿视频在线观看 | 精品久久久久久久久久久久久久 | 亚洲成人av| 亚洲精品免费在线 | 欧美精品在线看 | 欧美日韩在线看 | 亚洲精品欧美精品 | 视频一区二区在线观看 | 日韩一区精品 | 欧美一区二区二区 | 午夜成人免费视频 |