RedisDesktopManager客戶端可視化工具下載安裝與使用


場景

Centos中Redis的下載編譯與安裝(超詳細):

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103967334

Redis的啟動和關閉(前台啟動和后台啟動):

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103972348

在參照上面搭建好Redis的環境並啟動后,除了使用客戶端腳本連接服務端,還可以使用RedisDesktopManager客戶端可視化工具。

 

 

注:

博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關注公眾號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。

實現

安裝包下載,在公眾號中回復“RedisDesktopManager”。

雙擊exe安裝包

 

 

點擊Next

 

 

然后點擊I Agree

 

 

選擇安裝路徑,點擊next

 

 

點擊Finish並運行

點擊下面建立連接

 

 

然后輸入名字、IP和端口,點擊測試連接

 

 

在連接過程中若出現

RedisDeskTopManager連接時提示:can't nonnect to redis-server

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103976955

可能需要的Linux命令

    1.查看已開放的端口(默認不開放任何端口)
       

 firewall-cmd --list-ports


    2.開啟6379端口

 firewall-cmd --zone=public --add-port=6379/tcp --permanent


     firewall-cmd --zone=public(作用域) --add-port=6379/tcp(端口和訪問類型) --permanent(永久生效)

    3.重啟防火牆
        

firewall-cmd --reload


    4.停止防火牆
       

 systemctl stop firewalld.service


    5.禁止防火牆開機啟動
        

systemctl disable firewalld.service


    6.刪除
        

firewall-cmd --zone=public --remove-port=80/tcp --permanent

 

建立連接成功后就可以進行可視化操作了


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM