51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Redis 命令

Redis 命令

Redis命令用于在redis服务上执行操作。

要在redis服务上执行命令需要一个redis客户端。Redis客户端在我们之前下载的的redis的安装包中。文章源自小柒网-https://www.yangxingzhen.cn/6989.html

语法文章源自小柒网-https://www.yangxingzhen.cn/6989.html

Redis客户端的基本语法为:文章源自小柒网-https://www.yangxingzhen.cn/6989.html

[root@localhost ~]# redis-cli文章源自小柒网-https://www.yangxingzhen.cn/6989.html

实例文章源自小柒网-https://www.yangxingzhen.cn/6989.html

以下实例讲解了如何启动 redis 客户端:文章源自小柒网-https://www.yangxingzhen.cn/6989.html

启动redis客户端,打开终端并输入命令redis-cli。该命令会连接本地的redis 服务。文章源自小柒网-https://www.yangxingzhen.cn/6989.html

127.0.0.1:6379> exit文章源自小柒网-https://www.yangxingzhen.cn/6989.html

[root@localhost ~]# redis-cli文章源自小柒网-https://www.yangxingzhen.cn/6989.html

127.0.0.1:6379> ping文章源自小柒网-https://www.yangxingzhen.cn/6989.html

PONG

在以上实例中我们连接到本地的redis服务并执行PING命令,该命令用于检测 redis服务是否启动。

在远程服务上执行命令

如果需要在远程redis服务上执行命令,同样我们使用的也是redis-cli命令。

语法

[root@localhost ~]# redis-cli -h host -p port -a password

实例

以下实例演示了如何连接到主机为127.0.0.1,端口为6379 ,密码为mypass的redis服务上。

[root@localhost ~]# redis-cli -h 127.0.0.1 -p 6379 -a "mypass"

127.0.0.1:6379>

127.0.0.1:6379> PING

PONG
Redis最后更新:2022-11-24

赞(0)
未经允许不得转载:工具盒子 » Redis 命令