PHP開發中redis的主從模式以及加密方法

來源:互聯網
上載者:User
1、redis下載安裝:https://redis.io/download

$ wget http://download.redis.io/releases/redis-4.0.10.tar.gz$ tar xzf redis-4.0.10.tar.gz$ cd redis-4.0.10$ make$ src/redis-server$ src/redis-cliredis> set foo barOKredis> get foo"bar"

重啟:

ps -el | grep redis

redis-cli -h 10.185.141.146 -p 6379 shutdown

可通過這種方式重新指定redis.conf:

/usr/local/bin/redis-server /export/servers/redis/redis.conf

2、主從模式和叢集模式簡介

注意叢集模式設定:cluster-enabled yes

主從模式為:cluster-enabled no

參考:https://www.cnblogs.com/janehoo/p/6119175.html

3、主從設定搭建

bind 192.168.119.131(綁定當前機器 IP)
從機設定:slaveof 10.181.24.207 6379

4、加密碼 參考:https://blog.csdn.net/ningxuezhu/article/details/50341613

requirepass "admin.123"   #設定redis登入密碼

masterauth "admin.123"   #主從認證密碼,否則主從不能同步

訪問:/usr/local/bin/redis-cli -h 10.181.21.214 -p 6379 -a RA8gp8DyAn

代碼加密方式:

1)

URI uri = URI.create(config.getUri()); redis = new Jedis(uri, config.getTimeout());
"uri": "redis://:RA8gp8DyAn@10.181.24.207:6379/0"

2)

Jedis jedis=new Jedis(map.get("host"),Integer.parseInt(map.get("port")),Integer.parseInt(map.get("timeout"))
redis=[{name:"redis-lf",host:"10.181.24.207",port:"6379",timeout:"5000",pwd:"RA8gp8DyAn"},\       {name:"redis-mjq",host:"10.185.181.250",port:"6379",timeout:"5000",pwd:"RA8gp8DyAn"},\       {name:"redis-ht",host:"11.24.69.219",port:"6379",timeout:"5000",pwd:"RA8gp8DyAn"}]

3)若redis已啟動,可通過config set masterauth "RA8gp8DyAn"先設定,然後修改設定檔,帶下次重啟時載入。

5、持久化

redis有兩種持久化方式:參考:http://redisdoc.com/topic/persistence.html

參考:https://blog.csdn.net/RobertoHuang/article/details/70847194

1、appendonly yes //啟用aof持久化方式

2、RDB是Redis預設的持久化方式。

RDB的配置 :在設定檔中已經預置了三個條件

save 900 1 # 15分鐘內至少有一個鍵被更改 save 300 10 # 5分鐘內至少有10個鍵被更改save 60 10000 # 1分鐘內至少有10000個鍵被更改
  • 預設的rdb檔案路徑是目前的目錄,檔案名稱是:dump.rdb,可以在設定檔中修改路徑和檔案名稱,分別是dir和dbfilename

dir ./ # rdb檔案儲存體路徑dbfilename dump.rdb # rdb檔案名稱
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.