Skip to content

Commit c13fb4c

Browse files
committed
Update docs
1 parent 321c582 commit c13fb4c

File tree

3 files changed

+21
-32
lines changed

3 files changed

+21
-32
lines changed

docs/features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## Search in connection tree
22
RDM supports key filtering. To filter keys you need to open database context menu and select "Filter keys"
33

4-
![](http://redisdesktop.com/docs/rdm_tree_search1.png)
4+
![](https://redisdesktop.com/static/docs/rdm_tree_search1.png)
55

66
After that you will be able to enter filter pattern:
77

8-
![](http://redisdesktop.com/docs/rdm_tree_search2.png)
8+
![](https://redisdesktop.com/static/docs/rdm_tree_search2.png)
99

1010
Press OK button to apply a filter.

docs/install.md

Lines changed: 13 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,45 +2,34 @@
22

33
## Windows
44

5-
#### Manual install (recommended)
65
1. Download Windows Installer from [http://redisdesktop.com/download](http://redisdesktop.com/download)
76
2. Run downloaded installer
87

9-
#### Install via Chocolatey (outdated)
10-
```bash
11-
choco install redis-desktop-manager
12-
```
138

149
## Mac OS X
15-
#### Homebrew cask
16-
```bash
17-
# Install Homebrew cask
18-
brew install caskroom/cask/brew-cask
19-
20-
# Install Redis Desktop Manager aka RDM
21-
brew cask install rdm
22-
```
23-
#### Manual install
24-
1. Download dmg image from [http://redisdesktop.com/download](http://redisdesktop.com/download)
10+
1. Download dmg image from [http://redisdesktop.com/download](http://redisdesktop.com/download) **(Requires subscription)**
2511
2. Mount dmg image
2612
3. Run rdm.app
2713

14+
2815
## Ubuntu
29-
1. Download Debian Package from [http://redisdesktop.com/download](http://redisdesktop.com/download)
30-
2. Install package:
31-
`dpkg -i redis-desktop-manager_X.X.X_i386.deb`
16+
1. Download `deb` package from [http://redisdesktop.com/download](http://redisdesktop.com/download) **(Requires subscription)**
17+
2. Install package via Ubuntu Software Center
3218
3. Run RedisDesktopManager :
3319
`/usr/share/redis-desktop-manager/bin/rdm` or `redis-desktop-manager`
3420

3521
After installation Redis Desktop Manager will be available in main menu.
3622

37-
Note: You may need the libicu52 package available from launchpad[https://launchpad.net/ubuntu/+source/icu]
3823

3924
## Fedora
4025
[Build from source](install.md#build-on-linux) with automated bash script
4126

27+
## CentOS
28+
[Build from source](install.md#build-on-linux) with automated bash script
29+
30+
4231
## ArchLinux
43-
Package - https://aur.archlinux.org/packages/redis-desktop-manager/
32+
Package - [https://aur.archlinux.org/packages/redis-desktop-manager/](https://aur.archlinux.org/packages/redis-desktop-manager/)
4433

4534
## Other platforms
4635

@@ -61,11 +50,11 @@ git clone --recursive https://github.com/uglide/RedisDesktopManager.git -b 0.8.0
6150
```bash
6251
cd src/
6352
./configure
64-
source /opt/qt54/bin/qt55-env.sh && make && sudo make install
53+
source /opt/qt55/bin/qt55-env.sh && make && sudo make install
6554
cd /usr/share/redis-desktop-manager/bin
6655
mv qt.conf qt.backup
6756
```
68-
#### Fedora
57+
#### Fedora & CentOS
6958
```bash
7059
cd src/
7160
./configure
@@ -78,13 +67,13 @@ mv qt.conf qt.backup
7867
### Build on OS X
7968
1. Install XCode with xcode build tools
8069
2. Build RDM dependencies `cd ./src && ./configure`
81-
3. Install [Qt 5.5](http://www.qt.io/download-open-source/#section-2)
70+
3. Install [Qt 5.6](http://www.qt.io/download-open-source/#section-2)
8271
4. Open ./src/rdm.pro in Qt Creator
8372
5. Run build
8473

8574
### Build on Windows##
8675
1. Install Visual Studio 2013 Community with Update 5
87-
2. Install [Qt 5.6+](http://www.qt.io/download-open-source/#section-2)
76+
2. Install [Qt 5.6](http://www.qt.io/download-open-source/#section-2)
8877
3. Download RDM dependencies `cd ./src` and run `configure.bat`
8978
4. Open ./src/rdm.pro in Qt Creator
9079
5. Run build

docs/quick-start.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
After you [install](install.md) RDM the first you need to do in order to start using it is create Connection to your Redis server. On the main screen press button **Connect to Redis Server**.
66

7-
![](http://redisdesktop.com/docs/rdm_main.png)
7+
![](http://redisdesktop.com/static/docs/rdm_main.png)
88

99
## Connect to local or public redis-server
1010
On the first tab Connection Settings put general info regarding connection that you are creating.
@@ -17,13 +17,13 @@ On the first tab Connection Settings put general info regarding connection that
1717
## Connect to public redis-server with SSL
1818
If you want to connect to redis-server with SSL you need to enable SSL on the second tab and provide a public key in PEM format. Bellow you can find instructions for particular cloud services.
1919

20-
<img src="http://redisdesktop.com/docs/rdm_ssl.png" height="300" />
20+
<img src="http://redisdesktop.com/static/docs/rdm_ssl.png" height="300" />
2121

2222

2323
### Windows Azure Redis Cache <br /> <img src="https://azure.microsoft.com/svghandler/redis-cache/?width=600&height=315" height="100" />
2424

2525
1. Create connection with all requested information
26-
<br /> <img src="https://redisdesktop.com/static/docs/rdm_ssl_azure.png" height="300" />
26+
<br /> <img src="http://redisdesktop.com/static/docs/rdm_ssl_azure.png" height="300" />
2727
2. Make sure that "Use SSL Protocol" checkbox is enabled
2828
3. Your Azure Redis connection is ready to use
2929

@@ -44,7 +44,7 @@ To use SSH tunnel select checkbox "Use SSH Tunnel". There are different security
4444

4545
> **NOTE for Windows users:** Your private key is must be in .pem format.
4646
47-
<img src="http://redisdesktop.com/docs/rdm_ssh.png" height="300" />
47+
<img src="http://redisdesktop.com/static/docs/rdm_ssh.png" height="300" />
4848

4949
### Advanced SSH tunneling
5050
If you need advanced SSH tunneling you should setup SSH tunnel manually and connect via localhost:
@@ -64,13 +64,13 @@ socat -v tcp-l:6379,reuseaddr,fork unix:/tmp/redis.sock
6464
Use the next tab Advanced settings in order to setup Namespace separator or other settings.
6565

6666

67-
<img src="http://redisdesktop.com/docs/rdm_advanced_settings.png" height="300" />
67+
<img src="http://redisdesktop.com/static/docs/rdm_advanced_settings.png" height="300" />
6868

6969
## Next steps
7070
Now you can test connection or create connection right away.
7171

7272
Congratulations, now you connected to your Redis Server. You should see something similar to what we showed on our screen.
73-
![](http://redisdesktop.com/docs/rdm_main2.png)
73+
![](http://redisdesktop.com/static/docs/rdm_main2.png)
7474

7575

7676
Click on the connection and expand keys. By clicking the right button, you can see console menu and manage your connection from there.

0 commit comments

Comments
 (0)