zookeeper的命令
时间: 2023-11-07 07:52:32 浏览: 93
Zookeeper常用Shell命令
zookeeper常用命令包括:
1. 连接zookeeper服务器:zkCli.cmd -server 127.0.0.1:2181
2. 创建节点:create /path data
3. 获取节点数据:get /path
4. 设置节点数据:set /path data
5. 列出子节点:ls /path
6. 删除节点:delete /path
7. 递归删除节点及其子节点:rmr /path
8. 列出最近操作的10条命令历史:history
9. 根据历史命令编号重新调用命令:redo
阅读全文