redis设置密码后停止服务报错,NOAUTH Authentication required
可以修改/etc/init.d/redis文件中的stop命令
$CLIEXEC -p $REDISPORT shutdown
改为
$CLIEXEC -a "password" -p $REDISPORT shutdown
上面"password"为你设置的密码
再次停止服务,服务成功关闭
redis设置密码后停止服务报错,NOAUTH Authentication required
可以修改/etc/init.d/redis文件中的stop命令
$CLIEXEC -p $REDISPORT shutdown
改为
$CLIEXEC -a "password" -p $REDISPORT shutdown
上面"password"为你设置的密码
再次停止服务,服务成功关闭