非關系數(shù)據(jù)庫——redis群集-創(chuàng)新互聯(lián)

redis群集,實驗環(huán)境兩臺服務器,六個節(jié)點,每臺服務器三個網(wǎng)卡

6個節(jié)點三個主,三個副本

主服務器安裝redis

[root@localhost ~]# yum install gcc gcc-c++ make -y  #安裝環(huán)境包
[root@localhost ~]# mkdir /abc
[root@localhost ~]# mount.cifs //192.168.100.25/redis /abc/ 掛載
Password for root@//192.168.100.25/redis:  
[root@localhost ~]# cd /abc/
[root@localhost abc]# ls
redis-5.0.7.tar.gz
[root@localhost abc]# tar zxvf redis-5.0.7.tar.gz -C /opt/ #解壓到opt底下
[root@localhost abc]# cd /opt/redis-5.0.7/
make
[root@localhost redis-5.0.7]# make PREFIX=/usr/local/redis install #安裝
[root@localhost redis-5.0.7]# ln -s /usr/local/redis/bin/* /usr/local/bin/ #做軟連接
[root@localhost redis-5.0.7]# cd /opt/redis-5.0.7/utils/
[root@localhost utils]# ./install_server.sh 
Welcome to the redis service installer
This script will help you easily set up a running redis server

Please select the redis port for this instance: [6379] 
Selecting default: 6379
Please select the redis config file name [/etc/redis/6379.conf] 
Selected default - /etc/redis/6379.conf
Please select the redis log file name [/var/log/redis_6379.log] 
Selected default - /var/log/redis_6379.log
Please select the data directory for this instance [/var/lib/redis/6379] 
Selected default - /var/lib/redis/6379
Please select the redis executable path [/usr/local/bin/redis-server] /usr/local/redis/bin/redis-server

從服務器(一樣的操作不重復了)

主服務器配置redis

帶“#”的原本配置文件的內(nèi)容方便寫shell腳本

[root@localhost utils]# vim /etc/redis/6379.conf 
  #70 bind 127.0.0.1
  70 #bind 127.0.0.1
  #89 protected-mode yes
  89 protected-mode no #關閉保護功能
#833 # cluster-enabled yes
833  cluster-enabled yes  #開啟群集功能
#841 # cluster-config-file nodes-6379.conf
841  cluster-config-file nodes-6379.conf #開啟群集功能配置文件
#847 # cluster-node-timeout 15000
847  cluster-node-timeout 15000 #設置群集超時時間為15000秒
 #700 appendonly no
 700 appendonly yes #開啟AOF支持
[root@localhost redis]# /etc/init.d/redis_6379 restart #開起redis
Stopping ...
Waiting for Redis to shutdown ...
Redis stopped
Starting Redis server...
[root@localhost utils]# cd /var/lib/redis/
[root@localhost redis]# cd 6379/
[root@localhost 6379]# ls
appendonly.aof  dump.rdb  nodes-6379.conf
#aof配置文件,rdb快照文件,節(jié)點配置文件

從服務器一樣的操作

主服務器安裝rvm,ruby控制群集

gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 #導入密鑰
[root@localhost 6379]# curl -sSL https://get.rvm.io | bash -s stable #尋找這個地址安裝RVM

[root@localhost 6379]# cd /opt/
[root@localhost opt]# ls
redis-5.0.7  rh
[root@localhost opt]# vim abc.sh #rvm的腳本很長
[root@localhost opt]# ls
abc.sh  redis-5.0.7  rh
[root@localhost opt]# chmod +x abc.sh 
[root@localhost opt]# ls
abc.sh  redis-5.0.7  rh
[root@localhost opt]# source /etc/profile.d/rvm.sh 
[root@localhost opt]# rvm list known #查看rvm安裝的版本

[root@localhost opt]# rvm install 2.4.1 #安裝rvm2.4.1版本

[root@localhost opt]# rvm use 2.4.1 #使用rvm
Using /usr/local/rvm/gems/ruby-2.4.1
[root@localhost opt]# ruby -v #查看ruby的版本
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
[root@localhost opt]# gem install redis #安裝redis

主服務器安裝三塊網(wǎng)卡
192.168.136.229
192.168.136.232
192.168.136.231
從服務器安裝三塊網(wǎng)卡
192.168.136.185
192.168.136.233
192.168.136.234

成都創(chuàng)新互聯(lián)主要從事網(wǎng)頁設計、PC網(wǎng)站建設(電腦版網(wǎng)站建設)、wap網(wǎng)站建設(手機版網(wǎng)站建設)、響應式網(wǎng)站、程序開發(fā)、網(wǎng)站優(yōu)化、微網(wǎng)站、重慶小程序開發(fā)公司等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設行業(yè)積累了豐富的網(wǎng)站建設、網(wǎng)站設計、網(wǎng)站設計、網(wǎng)絡營銷經(jīng)驗,集策劃、開發(fā)、設計、營銷、管理等多方位專業(yè)化運作于一體。

非關系數(shù)據(jù)庫——redis群集

兩臺服務器都重啟網(wǎng)路服務

[root@localhost opt]# systemctl restart network

兩臺服務器關閉防火墻和增強功能

[root@localhost opt]# systemctl stop firewalld.service
[root@localhost opt]# setenforce 0

主服務器,重啟redis,創(chuàng)建群集

[root@localhost 6379]# /etc/init.d/redis_6379 restart #重啟redis
redis-cli --cluster create 192.168.136.229:6379 192.168.136.232:6379 192.168.136.231:6379 192.168.136.185:6379 192.168.136.233:6379 192.168.136.234:6379 --cluster-replicas 1

Can I set the above configuration? (type 'yes' to accept): yes #出現(xiàn)這行輸入yes
三個節(jié)點master,三個副本節(jié)點,彼此對應關系是隨機的,但是是一主帶一從。

開始驗證

[root@localhost opt]# redis-cli -h 192.168.136.229 -p 6379 #登錄一臺主服務器229
192.168.136.229:6379> set name zhangsan #創(chuàng)建鍵值對
OK
192.168.136.229:6379> keys * #查看所有鍵
1) "name"
192.168.136.229:6379> get name  #查看值
"zhangsan"
192.168.136.229:6379> quit
[root@localhost opt]# redis-cli -h 192.168.136.234 -p 6379 #登錄一臺從服務器234
192.168.136.234:6379> keys *
1) "name"
192.168.136.234:6379> get name #查看數(shù)據(jù),查看不了,會提示你數(shù)據(jù)存放在231服務器中
(error) MOVED 5798 192.168.136.231:6379
[root@localhost opt]# redis-cli -h 192.168.136.231 -p 6379 #登錄231服務器,就看到數(shù)據(jù)了
192.168.136.231:6379> keys *
1) "name"
192.168.136.231:6379> get name
"zhangsan"

用hash方式建立鍵值對,設置鍵的刪除時間

[root@master opt]# redis-cli -h 192.168.136.229 -p 6379 
192.168.136.229:6379> hset person age 20   ##用hash方式建立鍵值對
(integer) 1
192.168.136.229:6379> hset person name lisi
(integer) 1
192.168.136.229:6379> keys *
1) "person"
192.168.136.229:6379> hget person age   ##獲取鍵的值
"20"
192.168.136.229.128:6379> expire person 5     ##設置鍵的刪除時間5s
(integer) 1
192.168.136.229:6379> keys *
1) "person"
192.168.136.229:6379> keys *
(empty list or set)

以上就是我們?nèi)康膬?nèi)容了,謝謝收看

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。

標題名稱:非關系數(shù)據(jù)庫——redis群集-創(chuàng)新互聯(lián)
本文網(wǎng)址:http://muchs.cn/article32/ipipc.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供App開發(fā)云服務器、Google、關鍵詞優(yōu)化、網(wǎng)站改版、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設