The installation
-
Download: github.com/MicrosoftAr…
-
Configure the environment and add it to the path
-
Modify the redis.windows-service.conf file under redis and add it under # requirepass foobared
requirepass 123456
Set the default password to123456
-
Start with the redis-server redis.windows-service.conf configuration
- Installation as a service
redis-server --service-install redis.windows.conf
- Installation as a service
-
Start the service
redis-server --service-start
Copy the code
- Stop the service
redis-server --service-stop
Copy the code
- Connect the test
redis
# connect reids
redis-cli
# login
auth 123456
Copy the code