一些經常使用的配置:html
requirepass admin #服務鏈接密碼 bind 192.168.0.13 127.0.0.1 #ip綁定,可配多個(全部遠程客戶端想要鏈接,須要註釋掉) protected-mode no #關閉安全模式(就能夠遠程鏈接了) port 6379 #端口配置 daemonize yes #開啓後臺啓動 logfile /home/hadoop/redis-5.0.5/logs/redis.log #日誌路徑配置 dir /home/hadoop/redis-5.0.5/cache/ #數據持久化路徑 masterauth:xxx #主從同步須要配置主節點的密碼(哨兵模式下主從都配配置) slaveof 192.168.0.23 6379 #主從配置,從節點須要配置
二話不說先上圖,能看上再玩,看不上略過,網上各類監控軟件還得用本身喜歡的不是!項目地址:https://github.com/nkrode/RedisLive
python
下載redislive源代碼,解壓配置redis-liver-conf文件,監控數據存儲方案的配置,可選擇redis或sqllitelinux
{ "RedisServers": [ { "server": "192.21.126.13", "port" : 6379, "password" : "haina" } ], "DataStoreType" : "redis", "RedisStatsServer": { "server" : "192.21.126.23", "port" : 6380 }, "SqliteStatsStore" : { "path" : "/home/hadoop/hainascript/redis-live/sqlitedata/redislive.db" } }
注意:配置爲linu系統的定時任務時,提示找不到redis-liver-conf文件,這時候須要編輯redis-monitor.py文件,以下:git
#引入以下依賴 import os import sys #主函數執行以前,先切換到腳本所在目錄 SCRIPT_ROOT = sys.path[0] os.chdir(SCRIPT_ROOT)
啓動Web服務
* ./redis-live.py
* 默認端口爲8888,咱們能夠編輯redis-live.py文件來修改端口github
打開瀏覽器,訪問host:port/index.html便可看到你期待的頁面!!!redis
我的博客地址:sql
csdn:https://blog.csdn.net/tiantuo6513
cnblogs:https://www.cnblogs.com/baixianlong
segmentfault:https://segmentfault.com/u/baixianlong
github:https://github.com/xianlongbaisegmentfault