Loading... ## 命令行方式(不推荐,Redis关闭后此密码失效) 1. 运行redis: ``` redis-server.exe redis.windows.conf ``` 2. 双击打开`redis-cli.exe` 3. 设置密码: ``` config set requirepass password ``` > 该命令即把密码设置为 `password` 4. 测试:(提示OK即设置成功) ``` auth password ``` ## 配置文件方式(推荐,Redis关闭后此密码不会失效) > 每次Redis运行都会去读取 `redis.windows.conf`的配置内容,因此密码不会失效。 1. 编辑`redis.windows.conf`配置文件: ``` requirepass password ``` ![](https://fuju.life/usr/uploads/2020/12/3415674125.png) 2. 启动Redis: ``` redis-server.exe redis.windows.conf ``` 3. 双击打开`redis-cli.exe` 4. 测试:(提示OK即设置成功) ``` auth password ``` Last modification:December 20, 2020 © Allow specification reprint Like