Github 星標 8K+ 這款國人開源的 Redis 可視化管理工具,真香...

 

做程序員就少不了與一些工具打交道,比如:監控工具、管理工具等,有些工具是命令行界面,有些工具是可視化界面,反正都是可以能夠滿足日常使用的功能需求。

對於redis管理工具來說,也有不少可能的產品,比如:

  • 1、Redis Desktop Manager
  • 2、RedisStudio
  • 3、phpRedisAdmin
  • 4、Go-Redis
  • 5、RedisClient

有開源、免費的,也有商業收費的版本,基本上功能都還可以,不過開源、免費還是最大的需求點之一哈,老司機都懂得的。

所以,今天,民工哥就給大家安利一款由國人開源的Redis可視化管理工具,名字很有意思,叫:Another Redis Desktop Manager。

Github:https://github.com/qishibo/An...

Another Redis Desktop Manager簡述

Another Redis Desktop Manager是一個更快,更好,更穩定的Redis桌面管理器,與Linux,Windows和Mac兼容。而且,加載大量密鑰時,它不會崩潰。

Another Redis Desktop Manager安裝

這類的軟件、工具安裝都非常的簡單,易操作。

1、Mac或Linux安裝

# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git
cd AnotherRedisDesktopManager
# install dependencies
npm install
# if download electron failed during installing, use this command
# ELECTRON_MIRROR="https://npm.taobao.org/mirrors/electron/" npm install
# serve with hot reload at localhost:9988
npm start
# after the previous step is completed, open another tab, build up a desktop client
npm run electron

 

如果出現下面的報錯信息,官方也比較貼心給出瞭解決方案。

# if error like this
../src/FontManagerLinux.cc:1:35: fatal error: fontconfig/fontconfig.h: No such file or directory
# then try this
yum install libfontconfig1-dev -y

 

2、Windows安裝

# install build tools for the first time, just execute once
npm install -g windows-build-tools
# clone code
git clone https://github.com/qishibo/AnotherRedisDesktopManager.git
cd AnotherRedisDesktopManager
# install dependencies, 32-bit or 64-bit all use win32
npm install --platform=win32
# if download electron failed during installing, use this command
# npm config set ELECTRON_MIRROR http://npm.taobao.org/mirrors/electron/
# npm install --platform=win32
# serve with hot reload at localhost:9988
npm start
# after the previous step is completed to 100%, open another tab, build up a desktop client
npm run electron

 

當然,WIN系統你也可以直接下載.exe的軟件包,雙擊運行安裝更方便。

https://github.com/qishibo/An...

Another Redis Desktop Manager功能展示

1、主界面

image.png

支持:SSH、SSL、Cluster等幾種模式。集羣可以輸入任意集羣中的節點都可以自動識別出來。

2、操作界面

image.png

更多實用的功能,大家感興趣的可以下載下來,親自使用體驗一下。

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章