- 本地无密码登陆
命令:redis-cli;
- 本地有密码登陆
命令:redis-cli -a 123456;参数-a后面接密码;
- 警告
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.
解决方法一:redis-cli -a 123456 --no-auth-warning;
解决方法二:1) 先输入:redis-cli,回车; 2) 再输入:auth 123456;
- 其他参数
命令行一般分步进行,先指定其他参数连接,再输密码(auth 123456)
步骤一:redis-cli -h 127.0.0.1 -p 6379
步骤二:auth 123456
-h 指定IP:如-h 127.0.0.1、-h localhost;
-p 指定端口号:如 -p 6379;
完整的命令:
redis-cli -h 127.0.0.1 -p 6379 -a 123456 --no-auth-warning。