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
若文章图片、下载链接等信息出错,请在评论区留言反馈,博主将第一时间更新!如本文“对您有用”,欢迎随意打赏,谢谢!
评论