Centos中Redis的下載編譯與安裝(超詳細):redis
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103967334編程
Redis的啓動和關閉(前臺啓動和後臺啓動):tcp
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103972348工具
在參照上面搭建好Redis的環境並啓動後,除了使用客戶端腳本鏈接服務端,還能夠使用RedisDesktopManager客戶端可視化工具。測試
注:spa
博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關注公衆號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。.net
安裝包下載,在公衆號中回覆「RedisDesktopManager」。code
雙擊exe安裝包server
點擊Nextblog
而後點擊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
創建鏈接成功後就能夠進行可視化操做了