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 123456Set the default password to123456
  • Start with the redis-server redis.windows-service.conf configuration

    • Installation as a serviceredis-server --service-install redis.windows.conf
  • Start the service

redis-server --service-start
Copy the code
  • Stop the service
redis-server --service-stop
Copy the code
  • Connect the testredis
# connect reids
redis-cli

# login
auth 123456
Copy the code