Just go to the official website or search on csdn
Foolish installation, just keep clicking next
That’s it after the installation is completed
The following preparations are required before starting the connection
Modify the redis.conf file Commandvim redis.conf
If your redis.conf is in other files, you need to add the file path
For example, mine is in the etc directory, just in redis Add /etc
vim /etc/redis.conf
#1. Set the host IP of the virtual machine/or set it to 0.0.0.0 to open all
I commented it out directly here, and then used the ps -ef | grep redis
command to view
and it’s enough to display this*
2. Set protected-mode to no and turn off the protected mode before you can connect remotely.
Find protected-mode in redis.conf and set it to no
If Searching directly in redis.conf is too slow. Here you can directly /protected
to achieve quick search
3. Then we need to Set redis to start in the background, that is, set deamonize to yes
## 4. Remember to turn off the firewall
Startup:systemctl start firewalld
systemctl status firewalld
systemctl disable firewalld
systemctl stop firewalld
The above is the detailed content of How does RedisDesktopManager connect to redis remotely?. For more information, please follow other related articles on the PHP Chinese website!