[ERR] Node 127.0.0.1:7002 is not empty.

在使用redis集群工具创建redis集群的时候报如下错误:

[root@node112 /usr/local/redis/bin]#./redis-trib.rb create --replicas 1  127.0.0.1:7001 127.0.0.1:7002 
127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 127.0.0.1:7006
>>> Creating cluster
[ERR] Node 127.0.0.1:7002 is not empty. Either the node already knows other nodes (check with CLUSTER NODES) or contains 
some key in database 0.

这里错误很明显,就是在127.0.0.1:7002这个redis中,存在值未被清空:

[root@node112 /usr/local/redis/bin]#./redis-cli -p 7002
127.0.0.1:7002> keys *
1) "k1"

果然有值啊,清空所有的数据库

127.0.0.1:7002> flushall
OK

这样就不会再报上边的错误了。

你可能感兴趣的:(nosql,redis)