如何使用zkconfigutil和eclipse zookeeper插件配置脚本

2023-04-09 16:45:00 脚本 插件 如何使用

如何使用zkconfigutil和eclipse zookeeper插件配置脚本

1. 下载安装zkconfigutil和eclipse zookeeper插件

从官网下载安装zkconfigutil,下载地址为:https://www.apache.org/dyn/closer.cgi/zookeeper/

下载完成后解压缩安装包,进入bin目录,执行命令安装zkconfigutil:

sudo ./zkconfigutil -i

安装完成后,在eclipse中安装zookeeper插件,在eclipse中打开菜单help->install new software,在work with中输入地址:http://dist.wso2.org/p2/tools/zookeeper-plugin/3.0.0/,点击add按钮添加该地址,勾选所有的插件并点击next安装。

2. 配置脚本

在eclipse中打开菜单window->show view->other->zookeeper->zookeeper config view,在zookeeper config view中点击右键新建一个zookeeper配置脚本,在新建的脚本中输入如下内容:

server.1=localhost:2888:3888

server.2=localhost:2889:3889

server.3=localhost:2890:3890

然后点击右键脚本文件,选择run as->zookeeper config script即可执行脚本。

3. 启动zookeeper集群

在zookeeper config view中点击右键zookeeper集群,选择start zookeeper集群即可启动集群。

4. 查看集群状态

在zookeeper config view中点击右键zookeeper集群,选择show status可以查看集群状态。

相关文章