温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

etcd 添加、删除节点操作。非k8s情况

发布时间:2020-08-05 23:33:19 来源:网络 阅读:397 作者:Bob11111 栏目:系统运维

非k8s情况下,维护etcd,手动添加、删除节点

注意:4001为对外提供服务的端口,7001为节点间交互的借口

/export/App/etcd-v3.3.12/etcdctl --endpoints="http://172.28.178.53:4001,http://172.28.178.70:4001,http://172.28.178.34:4001" member add etcd2 http://11.5.104.2:7001

/export/App/etcd-v3.3.12/etcdctl --endpoints="http://172.28.178.53:4001,http://172.28.178.70:4001,http://172.28.178.34:4001" member remove 82fdb722eb9d638b (remove中的id 为meber list中显示的id,)

查看节点:
/export/App/etcd-v3.3.12/etcdctl --endpoints="http://172.28.178.53:4001,http://172.28.178.70:4001,http://172.28.178.34:4001" member list
26696069f6492b5e: name=etcd53 peerURLs=http://172.28.178.53:7001 clientURLs=http://172.28.178.53:4001 isLeader=false
83123c99177d962b: name=etcd9 peerURLs=http://11.5.103.9:7001 clientURLs=http://11.5.103.9:4001 isLeader=false
83d86e01a34a6415: name=etcd2 peerURLs=http://11.5.104.2:7001 clientURLs=http://11.5.104.2:4001 isLeader=false
cea02eff3b4e6b62: name=etcd70 peerURLs=http://172.28.178.70:7001 clientURLs=http://172.28.178.70:4001 isLeader=true
eb3de7b5e5f2cdca: name=etcd34 peerURLs=http://172.28.178.34:7001 clientURLs=http://172.28.178.34:4001 isLeader=false

查看节点状态:
[root@A01-R04-I178-34-7254361 ~]# /export/App/etcd-v3.3.12/etcdctl --endpoints="http://172.28.178.53:4001,http://172.28.178.70:4001,http://172.28.178.34:4001" cluster-health
member 26696069f6492b5e is healthy: got healthy result from http://172.28.178.53:4001
member 83123c99177d962b is healthy: got healthy result from http://11.5.103.9:4001
member 83d86e01a34a6415 is healthy: got healthy result from http://11.5.104.2:4001
member cea02eff3b4e6b62 is healthy: got healthy result from http://172.28.178.70:4001
member eb3de7b5e5f2cdca is healthy: got healthy result from http://172.28.178.34:4001
cluster is healthy

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI