Redis download, install and uninstall detailed

Github download address: https://github.com/MicrosoftArchive/redis/releases

You can also enter " redis and visualization tools " in the " ink direct " official account to get resources

redis installation:

1: The downloaded file is like this

2: win+R open cmd window

3: Switch to the file path in the above figure, as shown below:

4: Enter the redis-server redis.windows.conf command

The above figure also introduces the port corresponding to redis: 6379. If you need remote access, you need to open this port to the outside world

5: Deploy redis as a windows service, we reopen the cmd window and switch to the installation directory

Then enter: redis-server --service-install redis.windows.conf

6: Open the service and start redis

Redis commonly used instructions

Uninstall service: redis-server --service-uninstall

Start the service: redis-server --service-start

Stop service: redis-server --service-stop


Installation of redis visualization tool:

1: Double-click the installation package, the next step by default

2: Connection configuration redis

 

3: Test:

It looks like this after opening, the data is clearly visible

 

Those who are interested can pay attention to " Ink Direct ", there are many free programming materials to receive~

 

 

 

Guess you like

Origin blog.csdn.net/huxinyu0208/article/details/115264039