Redis 连接
Redis 连接命令主要是用于连接 redis 服务。
Redis 连接命令
命令及描述
1 AUTH password
验证密码是否正确
-- 验证一下。发现失败。但是明明已经设置了密码,依然失败,那么就执行config set requirepass "password" 重新设置一下吧。
127.0.0.1:6379> auth "789123"
(error) ERR Client sent AUTH, but no password is set
127.0.0.1:6379> config set requirepass "123456"
OK
127.0.0.1:6379> auth "789123"
(error) ERR invalid password
127.0.0.1:6379> auth "123456"
OK
2 ECHO message
打印字符串
127.0.0.1:6379> echo "adfa"
"adfa"
3 PING
查看服务是否运行
127.0.0.1:6379> ping
PONG
4 QUIT
关闭当前连接
5 SELECT index
切换到指定的数据库