Windows
- Install Microsoft Visual C++ 2015 (If you have not already)
- Download Windows Installer from http://redisdesktop.com/download (Requires subscription)
- Run downloaded installer
Mac OS X
- Download dmg image from http://redisdesktop.com/download (Requires subscription)
- Mount dmg image
- Run rdm.app
Ubuntu / Debian / Fedora / CentOS / OpenSUSE / ArchLinux / Other Linux di
- Install RedisDesktopManager using Snapcraft
Other platforms
You can build Redis Desktop Manager from source.
Build from source
Get source
- Install git
- Get source code:
git clone --recursive https://github.com/uglide/RedisDesktopManager.git -b 0.9 rdm && cd ./rdm
Build on Linux
Ubuntu
cd src/
./configure
qmake && make && sudo make install
cd /opt/redis-desktop-manager/
sudo mv qt.conf qt.backup
Fedora & CentOS & OpenSUSE
cd src/
./configure
qmake-qt5 && make && sudo make install
cd /usr/share/redis-desktop-manager/bin
sudo mv qt.conf qt.backup
Tip: checkinstall
Instead of sudo make install
consider to use sudo checkinstall -D --install
on deb-based OS and sudo checkinstall -R --install
on rpm-based OS to generate package and install it into the system.
Build on OS X
- Install XCode with Xcode build tools
- Install Homebrew
- Copy
cd ./src && cp ./resources/Info.plist.sample ./resources/Info.plist
- Building RDM dependencies require i.a. openssl and cmake. Install them:
brew install openssl cmake
- Build RDM dependencies
./configure
- Install Qt 5.9. Add Qt Creator and under Qt 5.9.x add Qt Charts module. http://iso.mirrors.ustc.edu.cn/qtproject/archive/online_installers/3.0/qt-unified-mac-x64-3.0.5-online.dmg
- Open ./src/rdm.pro in Qt Creator
- Run build
Build on Windows
- Install Visual Studio 2015 Community with Updates
- Install Qt 5.9
- Install Win32 Openssl 1.0.X
- Install CMake
- Build
libssh2
library in folder3rdparty/qredisclient/3rdparty/qsshclient/3rdparty/libssh2
using CMake - Open ./src/rdm.pro in Qt Creator
- Run build