学习自:redis-cli 命令详解 - 小学弟- - 博客园
1、登录:redis-cli [选项]
选项
选项 |
默认值 |
说明 |
对应配置项redis.conf |
-h <hostname> | 127.0.0.1 |
以哪个主机名/IP登录Redis 如果某个IP没在conf文件中绑定,那就不能用它登录 |
bind |
-p <port> | 6379 | 服务器端口号 | port |
-a <password> |
连接密码 当conf中指定了requirepass,登录时就需要-a |
requirepass | |
-r n | 重复执行某个命令n次 | ||
-i n | 当用了-r时,-i指定了每次命令执行的时间间隔 | ||
-c | 启动集群cluster模式 | ||
--raw | 以原始样式将结果输出到屏幕上 | ||
--csv | 以CSV样式输出结果 | ||
--rdb 路径 | 导出rdb到本地 |