当前位置: 代码迷 >> 综合 >> etcd v3的webui管理界面
  详细解决方案

etcd v3的webui管理界面

热度:67   发布时间:2023-12-09 10:39:07.0

项目地址:https://github.com/evildecay/etcdkeeper

安装

wget https://github.com/evildecay/etcdkeeper/releases/download/v0.7.6/etcdkeeper-v0.7.6-linux_x86_64.zip
yum install -y unzip zip
unzip etcdkeeper-v0.7.6-linux_x86_64.zip
cd etcdkeeper
chmod +x etcdkeeper
./etcdkeeper

访问:http://192.168.2.200:8080/etcdkeeper/

启动参数

-h stringhost name or ip address (default: "0.0.0.0", the http server addreess, not etcd address)
-p intport (default 8080)
-sep stringSeparator (default "/")
-usetlsuse tls (only v3)
-cacert stringverify certificates of TLS-enabled secure servers using this CA bundle (only v3)
-cert stringidentify secure client using this TLS certificate file (only v3)
-key stringidentify secure client using this TLS key file (only v3)
-auth booluse etcd auth
-timeout intETCD client connect timeout

测试

etcdctl put testkey "test key"
etcdctl put /aa/testkey "test key"

在这里插入图片描述