Sorry, your browser cannot access this site
This page requires browser support (enable) JavaScript
Learn more >

etcd集群搭建

1
2
3
4
5
6
7
etcd --name infra0 --initial-advertise-peer-urls http://127.0.0.1:12380 \
--listen-peer-urls http://127.0.0.1:12380 \
--listen-client-urls http://127.0.0.1:12379,http://127.0.0.1:12379 \
--advertise-client-urls http://127.0.0.1:12379 \
--initial-cluster-token etcd-cluster-1 \
--initial-cluster infra0=http://127.0.0.1:12380,infra1=http://127.0.0.1:22380,infra2=http://127.0.0.1:32380 \
--initial-cluster-state new
1
2
3
4
5
6
7
etcd --name infra1 --initial-advertise-peer-urls http://127.0.0.1:22380 \
--listen-peer-urls http://127.0.0.1:22380 \
--listen-client-urls http://127.0.0.1:22379,http://127.0.0.1:22379 \
--advertise-client-urls http://127.0.0.1:22379 \
--initial-cluster-token etcd-cluster-1 \
--initial-cluster infra0=http://127.0.0.1:12380,infra1=http://127.0.0.1:22380,infra2=http://127.0.0.1:32380 \
--initial-cluster-state new
1
2
3
4
5
6
7
etcd --name infra2 --initial-advertise-peer-urls http://127.0.0.1:32380 \
--listen-peer-urls http://127.0.0.1:32380 \
--listen-client-urls http://127.0.0.1:32379,http://127.0.0.1:32379 \
--advertise-client-urls http://127.0.0.1:32379 \
--initial-cluster-token etcd-cluster-1 \
--initial-cluster infra0=http://127.0.0.1:12380,infra1=http://127.0.0.1:22380,infra2=http://127.0.0.1:32380 \
--initial-cluster-state new

评论