設為「特別關注」每天帶你玩轉網路安全運維、應用開發、物聯網IOT學習!
希望各位看友【關注、點贊、評論、收藏、投幣】,助力每一個夢想。
本章目錄
什麼是RedisInsight?
RedisInsight 是一個直觀而高效的 Redis GUI (
視覺化工具
),它提供了設計、開發和優化 Redis 應用程式的功能,查詢、分析您的 Redis 資料並與之互動,簡化您的 Redis 應用程式開發 。(必備)
RedisInsight 現在採用了基於流行的Electron
框架的全新技術堆疊, 它可以跨平臺執行,支援 Linux、Windows 和 MacOS。
為啥用RedisInsight?
描述:RedisInsight 提供直觀的 Redis 管理 GUI,有助於優化您在應用程式中對 Redis 的使用,相比於其他視覺化工具,其實現的功能更強大、執行效率更改,通用性更好等特定,
下面列舉出 RedisInsight 的亮點功能:
RedisInsight 支援的功能:
補充:官方推薦的其他Redis資料庫相關工具檢視 [ https://redis.io/docs/tools/ ],當然你也可以可以選擇使用者端桌面管理工具(例如,AnotherRedisDesktopManage [ https://github.com/qishibo/AnotherRedisDesktopManager ] )
描述:redis-insight 與現在大多數軟體一樣,有多種安裝方式其中用得比較多的就是二進位制、原始碼編譯以及容器化部署的方式。
描述:我們需要在Redis官方進行下載 redis-insight 二進位制包然後進行安裝部署,有可能國內下載比較緩慢,此時我已將其打包下來,方便大家下載。
Redis GUI redis-insight 工具 下載:
環境依賴
Requirement | Ubuntu | MacOS | Windows |
---|---|---|---|
Operating System | Ubuntu 18.04 LTS or later | MacOS 10.13 or later | Windows 10 |
Memory (RAM) | 8GB | 8GB | 8GB |
Processor | 64 bit | 64 bit | 32 bit or 64 bit |
安裝環境
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 20.04.3 LTS
Release: 20.04
Codename: focal
$ lscpu | grep "CPU(s)"
CPU(s): 4
On-line CPU(s) list: 0-3
$ lsmem | grep "Total online memory"
Total online memory: 8G
安裝流程
步驟 01.官網下載 RedisInsight 上傳到 /usr/local/bin 目錄 並開啟 shell 終端賦予其下載許可權。
cd /usr/local/bin
mv redisinsight-linux64-1.13.0 redisinsight-linux64
chmod +x redisinsight-linux64
步驟 02.設定Redisinsight啟動所需的環境變數:
mkdir ~/.redisinsight
echo "export RIHOST=0.0.0.0" > ~/.bash_profile
echo "export RIPORT=8081" >> ~/.bash_profile
echo "export RIHOMEDIR=~/.redisinsight" >> ~/.bash_profile
echo "export RILOGDIR=~/.redisinsight" >> ~/.bash_profile
source ~/.bash_profile
溫馨提示:如果使用了REDISINSIGHT_HOST, REDISINSIGHT_PORT, REDISINSIGHT_HOME_DIR and LOG_DIR
等環境變數便會出現如下提示。
WARNING 2022-09-20 05:56:33,461 redisinsight_startup REDISINSIGHT_HOST, REDISINSIGHT_PORT, REDISINSIGHT_HOME_DIR and LOG_DIR environment variables will be deprecated in the version v1.9.
Please use RIHOST, RIPORT, RIHOMEDIR and RILOGDIR environment variables for setting host, port, db directory and log directory respectively.
步驟 03.啟動Redisinsight並後臺執行它
# 後臺執行
nohup /usr/local/bin/redisinsight-linux64 > ~/.redisinsight/console.log 2>&1 &
步驟 04.檢視 redisinsight 程序執行情況
root@weiyigeek:~# ps aux | grep "redisinsight"
root 6592 8.0 0.0 3220 2212 pts/0 S 13:59 0:00 /usr/local/bin/redisinsight-linux64
root 6593 8.9 0.9 602080 74616 pts/0 Sl 13:59 0:00 /usr/local/bin/redisinsight-linux64
root 6602 0.0 0.0 6432 724 pts/0 S+ 13:59 0:00 grep redisinsight
root@weiyigeek:~# netstat -ano | grep ":8081"
tcp 0 0 0.0.0.0:8081 0.0.0.0:* LISTEN off (0.00/0/0)
步驟 05.存取部署的redisinsight站點 http://10.20.172.201:8081/ 進行下一步設定,繼續設定你的 Redis 資料庫,此處我已經搭建好了一個redis資料庫如需搭建請參考此篇文章【https://blog.weiyigeek.top/2022/4-24-653.html】,點選連線到 Redis 資料庫進入到下一步。
步驟 06.進行設定Redis資料庫資訊,此處我是單節點進行演示,輸入主機、埠、名稱、以及redis密碼。
至此安裝設定完成,使用將在後續實踐!
描述:當下大多數企業的應用都是在容器環境中執行,所以redis官方也提供了相應容器映象以及在kubernetes中部署的資源清單,下述將演示在 Kubernetes 上安裝 RedisInsight,安裝高可用的K8S可以參照此篇文章 【 https://blog.weiyigeek.top/2022/6-7-664.html 】
映象主頁:https://hub.docker.com/r/redislabs/redisinsight/tags
映象名稱:docker pull redislabs/redisinsight:1.13.0
部署方式
步驟 01.在 k8s 叢集中建立一個 RedisInsight 部署和服務 YAML 檔案資源清單,注意此處我使用了動態儲存卷,如果有需要的部署nfs動態儲存卷可參考此篇文章( https://blog.weiyigeek.top/2022/6-7-664.html )
tee redisinsight-1.13.0.yaml <<'EOF'
# RedisInsight service with name 'redisinsight-service'
apiVersion: v1
kind: Service
metadata:
name: redisinsight-service
namespace: dev
spec:
type: LoadBalancer
ports:
- port: 8001
targetPort: 8001
selector:
app: redisinsight
---
# RedisInsight persistant storage
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: redisinsight-pv-claim
namespace: dev
labels:
app: redisinsight
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
storageClassName: managed-nfs-storage
---
# RedisInsight deployment with name 'redisinsight'
apiVersion: apps/v1
kind: Deployment
metadata:
name: redisinsight # deployment name
namespace: dev
labels:
app: redisinsight # deployment label
spec:
replicas: 1 # a single replica pod
strategy:
type: Recreate
selector:
matchLabels:
app: redisinsight # which pods is the deployment managing, as defined by the pod template
template: # pod template
metadata:
labels:
app: redisinsight # label for pod/s
spec:
volumes:
- name: db
persistentVolumeClaim:
claimName: redisinsight-pv-claim
initContainers:
- name: init
image: busybox
command:
- /bin/sh
- '-c'
- |
chown -R 1001 /db
resources: {}
volumeMounts:
- name: db
mountPath: /db
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
containers:
- name: redisinsight # Container name (DNS_LABEL, unique)
image: redislabs/redisinsight:1.13.0 # Hub Image
imagePullPolicy: IfNotPresent # Pull Policy
env:
- name: RIHOST
value: "0.0.0.0"
- name: RIPORT
value: "8001"
volumeMounts:
- name: db
mountPath: /db
ports:
- containerPort: 8001 # exposed container port and protocol
protocol: TCP
livenessProbe:
httpGet:
path : /healthcheck/ # exposed RI endpoint for healthcheck
port: 8001 # exposed container port
initialDelaySeconds: 5 # number of seconds to wait after the container starts to perform liveness probe
periodSeconds: 5 # period in seconds after which liveness probe is performed
failureThreshold: 1 # number of liveness probe failures after which container restarts
EOF
步驟02.在k8s叢集中部署 redisinsight v1.13.0 應用、服務以及持久化卷,檢視其部署狀態。
$ kubectl create namespace dev
namespace/dev created
$ kubectl apply -f redisinsight-1.13.0.yaml
service/redisinsight-service created
persistentvolumeclaim/redisinsight-pv-claim created
deployment.apps/redisinsight created
$ kubectl get pod,svc -n dev -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
pod/redisinsight-55d44b5bb-xzggg 1/1 Running 0 3m22s 10.66.182.217 weiyigeek-226 <none> <none>
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
service/redisinsight-service LoadBalancer 10.108.198.8 <pending> 80:31793/TCP 3m22s app=redisinsight
$ curl -I 10.66.182.217:8001
HTTP/1.1 200 OK
Cache-Control: max-age=0, no-cache, no-store, must-revalidate, private
# 埠轉發
$ kubectl -n dev port-forward deployment/redisinsight --address 0.0.0.0 30081:8001
Forwarding from 0.0.0.0:30081 -> 8001
Handling connection for 30081
Handling connection for 30081
步驟 03.成功應用並完成部署和服務,我們可通過瀏覽器存取 192.168.1.107:31793 便可看到如下圖所示介面。
至此,在k8s叢集中部署完畢
描述:在使用任何工具處理資料庫之前,必須先新增資料庫(Add Database),以便 RedisInsight 可以連線到該資料庫,新增獨立的 Redis 資料庫 這是隻有一臺 Redis 伺服器的 Redis 資料庫最簡單的設定,當然也支援獨立 Redis 叢集 Redis Sentinel 或者 具有TLS認證的Redis資料庫。
注意:目前 RedisInsight 支援 Redis 版本 4 及更高版本。
描述:點選設定好的Redis資料目標,即可看到如下overview頁面
描述: 可以通過使用 Browser(圖形) 或者 cli(命令列)進行Redis資料庫的CURD,如下圖所示
描述: 可以通過使用 Streams 選項進行 Redis 流操作。
描述:RedisInsight 提供了強大的分析功能,支援記憶體使用分析、分析器(在Redis中執行的命令過程摘要分析
)以及慢紀錄檔查詢。
描述:在Database索引標籤中我們可以直接設定Redis資料庫,包括其網路設定、通用設定以及快照、設定等等。
當然對應devops來說使用最多的還是CURD以及效能分析以及優化,此工具還是非常方便的,如需解更多其它功能需的朋友,可參考 redisinsight 使用者使用檔案:https://docs.redis.com/latest/ri/using-redisinsight/
libatk-1.0.so.0/libatk-bridge-2.0.so.0/libcups.so.2/libgtk-3.so.0
等錯誤root@weiyigeek:/usr/local/bin# wget https://download.redisinsight.redis.com/latest/RedisInsight-v2-linux-x86_64.AppImage
root@weiyigeek:/usr/local/bin# mv RedisInsight-v2-linux-x86_64.AppImage RedisInsight
root@weiyigeek:/usr/local/bin# chmod +x RedisInsight
root@weiyigeek:/usr/local/bin# ./RedisInsight
/tmp/.mount_RedisIuCY68M/redisinsight: error while loading shared libraries: libatk-1.0.so.0: cannot open shared object file: No such file or directory
/tmp/.mount_RedisIbwUuBs/redisinsight: error while loading shared libraries: libatk-bridge-2.0.so.0: cannot open shared object file: No such file or directory
/tmp/.mount_RedisIb3qNiD/redisinsight: error while loading shared libraries: libcups.so.2: cannot open shared object file: No such file or directory
/tmp/.mount_RedisI9GZsHC/redisinsight: error while loading shared libraries: libgtk-3.so.0: cannot open shared object file: No such file or directory
apt install libatk1.0-dev
apt install libatk-bridge2.0-dev
apt install libcups2-dev
apt install libgtk-3-dev
root without --no-sandbox is not supported
錯誤提示:錯誤資訊:[0920/133850.852943:FATAL:electron_main_delegate.cc(292)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
解決辦法:在低許可權使用者中執行./RedisInsight
啟動RedisInsight服務即可。
官網地址:https://redis.com/redis-enterprise/redis-insight/
專案原始碼:https://github.com/RedisInsight/RedisInsight
專案檔案:https://docs.redis.com/latest/ri
下載地址:https://redis.com/redis-enterprise/redis-insight/#insight-form
原文地址: https://blog.weiyigeek.top/2022/9-20-686.html
本文至此完畢,更多技術文章,盡情期待下一章節!
【WeiyiGeek Blog 個人部落格 - 為了能到遠方,腳下的每一步都不能少 】
歡迎各位志同道合的朋友一起學習交流【點選加入交流群】,如文章有誤請在下方留下您寶貴的經驗知識!
作者主頁: 【 https://weiyigeek.top】
部落格地址: 【 https://blog.weiyigeek.top 】
專欄書寫不易,如果您覺得這個專欄還不錯的,請給這篇專欄 【點個贊、投個幣、收個藏、關個注,轉個發,留個言】(人間六大情),這將對我的肯定,謝謝!。
echo "【點個贊】,動動你那粗壯的拇指或者芊芊玉手,親!"
printf("%s", "【投個幣】,萬水千山總是情,投個硬幣行不行,親!")
fmt.Printf("【收個藏】,閱後即焚不吃灰,親!")
console.info("【轉個發】,讓更多的志同道合的朋友一起學習交流,親!")
System.out.println("【關個注】,後續瀏覽檢視不迷路喲,親!")
cout << "【留個言】,文章寫得好不好、有沒有錯誤,一定要留言喲,親! " << endl;
更多網路安全、系統運維、應用開發、物聯網實踐、網路工程、全棧文章,盡在 https://blog.weiyigeek.top 之中,謝謝各位看又支援!