[root@130 src]
# tar xf redis-5.0.7.tar.gz
[root@130 src]
# cd redis-5.0.7
[root@130 redis-5.0.7]
# make
[root@130 redis-5.0.7]
# make install
[root@130 redis-5.0.7]
# mkdir /etc/redis
[root@130 redis-5.0.7]
# cp redis.conf /etc/redis/. //複製配置檔案到指定位置
[root@130 redis-5.0.7]
# vim /etc/redis/redis.conf
bind 192.168.80.130 //繫結ip位址
port 6379 //繫結埠號
requirepass 123456 //設定連線密碼
//被監控伺服器需執行以下命令,監控端可安裝後無需啟動
[root@130 redis-5.0.7]
# nohup redis-server /etc/redis/redis.conf & //啟動快取服務,並載入指定配置檔案
語法: redis-cli [ options ] [cmd [arg [arg …] ] ]
常用引數:
示例:
//監控需安裝redis,參考13.1,無需啟動redis服務
//無密碼監控無法檢視
[root@131 ~]
# redis-cli -h 192.168.80.130 -p 6379
192.168.80.130:6379> keys *
(error) noauth authentication required.
192.168.80.130:6379>
//密碼正確可正常監控
[root@131 ~]
# redis-cli -h 192.168.80.130 -p 6379 -a 123456
warning: using a password with '-a' or '-u' option on the command line inte***ce may not be safe.
192.168.80.130:6379> keys *
(empty list or set)
Redis監控之redis stat安裝與詳解
一 安裝環境 安裝編譯環境 ruby執行環境 git yum install gcc c yum y install ruby devel yum install ruby yum install rubygems git 二 拉取redis stat檔案 git clone 三 安裝redis s...
Redis安裝 集群 效能監控
最近專案即將上線,由於人手問題,各種研究運維相關知識,這兩天剛弄完redis集群部署的問題,跟大家嘮嘮。以下均是在linux環境下執行,系統ubuntu16.04 sudo wget 複製 sudo tar zxvf redis stable.tar.gz 複製 sudo apt get insta...
Prometheus安裝及監控minio
本文簡單的來說下prometheus安裝啟動,以centos7.x為例。wget tar xf prometheus 2.8.0.linux amd64.tar.gz c usr local mv usr local prometheus 2.8.0.linux amd64 usr local pr...