redis连接:Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

1、问题

连接远程redis的命令:

$ redis-cli -h host -p port -a password

今天在服务器上使用上命令连接阿里云redis的时候,显示警告信息如下:

Could not connect to Redis at r-2zeclm4fdwos1xewcb.redis.rds.aliyuncs.com:3717: Connection timed out

 

2、解决方法:依次使用下面两个命令

$ redis-cli -h host
$ auth password
eg: 
redis-cli -h r-2zeclm4fdwos1xewcb.redis.rds.aliyuncs.com
auth *********

 

posted @ 2020-12-24 16:43  一路向北321  阅读(23990)  评论(1编辑  收藏  举报