Redis 连接
Redis 连接命令主要是用于连接redis服务。
实例文章源自小柒网-https://www.yangxingzhen.cn/7012.html
以下实例演示了客户端如何通过密码验证连接到redis服务,并检测服务是否在运行:文章源自小柒网-https://www.yangxingzhen.cn/7012.html
[root@localhost ~]# redis-cli文章源自小柒网-https://www.yangxingzhen.cn/7012.html
127.0.0.1:6379> auth password文章源自小柒网-https://www.yangxingzhen.cn/7012.html
OK文章源自小柒网-https://www.yangxingzhen.cn/7012.html
127.0.0.1:6379> ping文章源自小柒网-https://www.yangxingzhen.cn/7012.html
PONG文章源自小柒网-https://www.yangxingzhen.cn/7012.html
Redis 连接命令
下表列出了redis连接的基本命令:文章源自小柒网-https://www.yangxingzhen.cn/7012.html
|----|-------------------------| | 序号 | 命令及描述 | | 1 | AUTH password(验证密码是否正确) | | 2 | ECHO message(打印字符串) | | 3 | PING(查看服务是否运行) | | 4 | QUIT(关闭当前连接) | | 5 | SELECT index(切换到指定的数据库) |
文章源自小柒网-https://www.yangxingzhen.cn/7012.html文章源自小柒网-https://www.yangxingzhen.cn/7012.html
Redis最后更新:2022-11-24