Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Redis Visualization tool Redis Desktop Manager

2025-04-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly shows you the "Redis visualization tool Redis Desktop Manager how to use", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "Redis visualization tool Redis Desktop Manager how to use" this article.

1. download

Redis Desktop Manager is open source and can be downloaded to the source code at github. But you need to install the package if you want to use it on windows.

Download from the official website: https://redisdesktop.com/download

Github address: https://github.com/uglide/RedisDesktopManager/releases

two。 Installation

Exe file, just next all the way, with installation tutorial attached

3. Use

Connect to the redis server:

After connecting, you can see that the left menu bar displays the database. The default is bd0.

Open db0 and you can see the data inside.

Right click on db0 to add key

The rest of you try it for yourself.

PS: solve the problem that Redis Desktop Manager can not connect to redis

It was found that redis was started on linux and the test redis was used normally.

But using RedisDesktopManager can not connect, the error is as follows: the Protrcted mode mode currently used, that is, the protected mode, which only allows local access, and also displays no bind address specified, so you need to modify these two configurations.

Redis.conf needs to be modified:

1. Modify bind

Originally: bind 127.0.0.1 represents the local loopback address, and the redis service can only be accessed through the local client connection, not through the remote connection.

Change this line comment or ip to 0.0.0.0 so that all connections from available network interfaces can be accepted.

two。 Modify protected mode protection mode to allow only local links

Modified to: protected mode no

Supplement daemonize configuration in redis.conf

Daemonize yes means to turn on daemon mode. This is a single-process and multithreaded mode, and redis will run in the background and write pid to the redis.conf-pidfile file, and redis will always run unless manual kill

The current interface of daemonize no will enter the command line interface of redis. Forcing exit to exit or closing the connection tool (xshell, etc.) will cause the redis process to exit.

After modifying the configuration file, you need to restart the redisposed files!

3. To start redis, you must specify a configuration file, otherwise the configuration file will not take effect

. / src/redis-server redis.conf above is all the content of this article entitled "how to use Redis Visualizer Redis Desktop Manager". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report