我们先连接到Redis服务
然后 我们要输入 CONFIG SET requirepass “新密码”
例如
CONFIG SET requirepass "A15167"
这样 密码就被设置成立 A15167
我们 输入 AUTH 密码
例如
AUTH A15167
这里 返回OK说明成功了
然后 我们退出在登录就真的需要 redis-cli -h IP地址 -p 端口 -a 密码 了
我们的是这样
redis-cli -h 127.0.0.1 -p 6379 -a A15167
这样 我们就连接上了 但是会警告 Warning: Using a password with ‘-a’ or ‘-u’ option on the command line interface may not be safe.
简单说 告诉我们这样连接不安全 密码会被别人看到