Redis basics—Redis Desktop Manager (Redis visualization tool) installation and usage tutorial

Redis Desktop Manager is a visual Redis database management tool that can easily view and operate the Redis database. Using Redis Desktop Manager can greatly improve the management efficiency of Redis database.

RDM installation and configuration
First, you need to download and installRedis Desktop Manager.

After the installation is complete, run RDM and open the main interface. In the main interface, you can see the server list panel on the left. Click the "Add Server" button and fill in the connection information of the Redis server, such as host name, port number, password, etc. Then click the "Connect" button to connect to the Redis server.

How to use RDM Mac

After you install RDM you first need to do it in order to start using it by creating a connection to your Redis server. On the home screen, press the Connect to Redis Server button.

Connect to a local or public redis server On the first tab of the Connection Settings, enter the general information about the connection you are creating
Name - A name for the new connection (For example: my_local_redis)
Host - redis-server host (for example: localhost)
Port - redis-server port (for example: 6379) < a i=4> Auth - redis-server authentication password Connect to public redis-server using SSL Required if you want to connect to redis-server using SSL Enable SSL on the second tab and provide the public key in PEM format. You can find instructions for specific cloud services.


Windows Azure Redis Cache 1. Create a connection with all requested information

2. Make sure the "Use SSL Protocol" checkbox is enabled 3. Your Azure Redis connection is ready
Redis Labs
To use To connect to a Redis Labs instance with SSL/TLS encryption, please perform the following steps:
1. Make sure SSL is enabled for the Redis instance in the Redis Labs dashboard.
2. Download and unzip garantia_credentials.zip from the Redis Labs dashboard
3. Select garantia_user.crt in the "Public Key" field
4.Select garantia_user_private.key in the "Private Key" field
5.Select garantia_ca.pem in the "Permissions" field
Connect to via SSH tunnel private redis-server
basic SSH tunnel
The SSH tab should allow you to use SSH tunneling. This is useful if your redis-server is not publicly accessible over the network. To use an SSH tunnel, select the Use SSH tunnel checkbox. There are different security options: you can use a normal password or an OpenSSH private key.
For Windows users:
Your private key must be in .pem format.

Advanced SSH Tunneling If you require advanced SSH tunneling, you should manually set up an SSH tunnel and connect via localhost:
ssh SSH_HOST -L 7000:localhost:6379
How to connect to Redis ElastiCache via EC2
Follow the instructions in this blog post
How to connect to Redis ElastiCache and In-Transit Encryption via EC2 Redis Desktop Manager does not directly support UNIX sockets, but you can use local sockets to redirect to unix domain sockets, for example using socat: Use next Tab Advanced Settings to set namespace separators or other settings. Advanced connection settings socat -v tcp-l:6379,reuseaddr,fork unix:/tmp/redis.sock Connecting to UNIX sockets and then connect to Redis ElastiCache through EC2 Follow the instructions in this document section to set up stunnel on the EC2 instance Using RedisDesktopManager < 0.9.9 Click "Enable TLS-over-SSH" in the SSH connection settings
Using RedisDesktopManager> = 0.9.9








Next Step Now you can test the connection or create a connection now. Congratulations, now you are connected to the Redis server. You should see something similar to what we showed on the screen.

Click the connection and expand the key. By right-clicking, you can see the console menu and manage your connections from there.

Guess you like

Origin blog.csdn.net/m0_73958362/article/details/133809206