时间:2021-07-01 10:21:17 帮助过:336人阅读
在使用 redis-cli 连接 redis 集群,进行数据操作时,有报错
./redis-cli -h 192.24.54.1 -p 6379 -a '123456' 192.24.54.1:6379> get name (error) MOVED 5798 192.24.54.2:6379
解决方法:
这种情况一般是因为启动 redis-cli 时没有设置集群模式所导致。
启动时使用 -c 参数来启动集群模式,命令如下:
./redis-cli -h 192.24.54.1 -p 6379 -a '123456' -c 192.24.54.1:6379> get name -> Redirected to slot [5798] located at 192.24.54.2:6379 "yayun"
更多redis知识请关注redis入门教程栏目。
以上就是连接redis集群报错:(error) MOVED的解决方法的详细内容,更多请关注gxlcms其它相关文章!