Procfile.learner 841 B

1234567891011
  1. # Use goreman to run `go get github.com/mattn/goreman`
  2. # 1. Start the cluster using Procfile
  3. # 2. Add learner node to the cluster
  4. # % etcdctl member add infra4 --peer-urls="http://127.0.0.1:42380" --learner=true
  5. # 3. Start learner node with goreman
  6. etcd4: bin/etcd --name infra4 --listen-client-urls http://127.0.0.1:42379 --advertise-client-urls http://127.0.0.1:42379 --listen-peer-urls http://127.0.0.1:42380 --initial-advertise-peer-urls http://127.0.0.1:42380 --initial-cluster-token etcd-cluster-1 --initial-cluster 'infra4=http://127.0.0.1:42380,infra1=http://127.0.0.1:12380,infra2=http://127.0.0.1:22380,infra3=http://127.0.0.1:32380' --initial-cluster-state existing --enable-pprof --logger=zap --log-outputs=stderr
  7. # 4. The learner node can be promoted to voting member by the command
  8. # % etcdctl member promote <memberid>