当前位置:   article > 正文

Windows下Redis配置密码,并设置自启动_windows redis server 启动密码生效

windows redis server 启动密码生效

1. 解压redis修改配置文件(设置密码)

打开Redis的配置文件,通常位于Redis安装目录下的 redis.windows.conf

在这里插入图片描述
去掉"requirepass"前注释,修改"foobared"为要设置的密码

requirepass foobared
  • 1

2.注册服务,设置开机自启

Redis安装目录运行cmd,安装Redis服务,运行以下命令:

redis-server --service-install redis.windows.conf --service-name redisServiceName
  • 1

3.验证
启动redis-cli.exe

#查看密码
config get requirepass
#密码
auth test123
  • 1
  • 2
  • 3
  • 4

4.注意事项

修改配置文件要在注册服务之前,不然修改的密码不生效。
5.相关命令

#卸载服务
redis-server --service-uninstall --service-name redisServiceName
#启动服务
redis-server --service-start --service-name redisServiceName


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/501186
推荐阅读
相关标签
  

闽ICP备14008679号