使用ZK UI监控管理zookeeper集群
Posted Peter-OK
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ZK UI监控管理zookeeper集群相关的知识,希望对你有一定的参考价值。
一、zookeeper集群的按照请参考:
二、ZK UI安装
# yum安装maven
yum install -y maven
# 更换使用阿里云maven源
vim /etc/maven/settings.xml
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
cd /usr/local
# git获取zkui源码(如果clone失败,可以下载zip文件解压)
git clone https://github.com/DeemOpen/zkui.git
cd zkui/
# 修改配置文件默认值
vim config.cfg
# zkui web页面访问端口
serverPort=9090
# 不使用127.0.0.1
zkServer=localhost:2181,localhost:2182,localhost:2183
# 300s/5min
sessionTimeout=300
# userSet中是登陆web界面的用户名和密码
#默认管理员 admin:manager
#默认用户 appconfig:appconfig
# 打包安装
mvn clean install
# 启动程序至后台
vim start.sh
#!/bin/bash
nohup java -jar target/zkui-2.0-SNAPSHOT-jar-with-dependencies.jar &
# 浏览器访问(注意防火墙放行9090端口)
http://172.30.12.22:9090/
#默认管理员 admin/manager
#默认用户 appconfig/appconfig
其他功能可访问官方git地址:https://github.com/DeemOpen/zkui
以上是关于使用ZK UI监控管理zookeeper集群的主要内容,如果未能解决你的问题,请参考以下文章