likes
comments
collection
share

windows下使用goreman启动etcd

作者站长头像
站长
· 阅读数 43

简单的记一下,因为网上能找到的现成的不多,恰巧家里的机子是win的

下载etcd的win版本: github.com/etcd-io/etc…

windows下使用goreman启动etcd

windows下使用goreman启动etcd

随便解压一个目录里,看自己需要。 解压后就这样,如下图

windows下使用goreman启动etcd

双击打开能用就算成功,把目录加入环境变量,方便后续操作,不加无所谓,每次打完整目录就行。

安装 goreman,git clone github.com/mattn/gorem…

直接go build 编一下,我就随便取个名字叫 goremantest.exe go build -o goremantest.ext

至此就装好了,现在启动

首先写一个配置文件,默认名字就叫 Procfile.learner

# Use goreman to run `go get github.com/mattn/goreman`
# Change the path of bin/etcd if etcd is located elsewhere

etcd1: bin/etcd --name infra1 --listen-client-urls http://127.0.0.1:12379 --advertise-client-urls http://127.0.0.1:12379 --listen-peer-urls http://127.0.0.1:12380 --initial-advertise-peer-urls http://127.0.0.1:12380 --initial-cluster-token etcd-cluster-1 --initial-cluster 'infra1=http://127.0.0.1:12380,infra2=http://127.0.0.1:22380,infra3=http://127.0.0.1:32380' --initial-cluster-state new --enable-pprof --logger=zap --log-outputs=stderr
etcd2: bin/etcd --name infra2 --listen-client-urls http://127.0.0.1:22379 --advertise-client-urls http://127.0.0.1:22379 --listen-peer-urls http://127.0.0.1:22380 --initial-advertise-peer-urls http://127.0.0.1:22380 --initial-cluster-token etcd-cluster-1 --initial-cluster 'infra1=http://127.0.0.1:12380,infra2=http://127.0.0.1:22380,infra3=http://127.0.0.1:32380' --initial-cluster-state new --enable-pprof --logger=zap --log-outputs=stderr
etcd3: bin/etcd --name infra3 --listen-client-urls http://127.0.0.1:32379 --advertise-client-urls http://127.0.0.1:32379 --listen-peer-urls http://127.0.0.1:32380 --initial-advertise-peer-urls http://127.0.0.1:32380 --initial-cluster-token etcd-cluster-1 --initial-cluster 'infra1=http://127.0.0.1:12380,infra2=http://127.0.0.1:22380,infra3=http://127.0.0.1:32380' --initial-cluster-state new --enable-pprof --logger=zap --log-outputs=stderr
#proxy: bin/etcd grpc-proxy start --endpoints=127.0.0.1:2379,127.0.0.1:22379,127.0.0.1:32379 --listen-addr=127.0.0.1:23790 --advertise-client-url=127.0.0.1:23790 --enable-pprof

# A learner node can be started using Procfile.learner

**这里要额外注意:

  1. 原先etcd官方给的配置文件,第一个机器是2379端口,在win下有冲突,不要使用etcd默认的,改成其他就行,我改成12379
  2. 配置文件里面有单引号,总出问题,需要删了重新键入一个单引号,不然启动不起来,报语法错误**

启动:假如Procfile.learner和goremantest.exe 在同一个目录

.\goremantest.exe -f .\Procfile.learner start

启动好就这样:

windows下使用goreman启动etcd

可用一些命令来测试。

注意!这里无法像linux一样,直接kill掉某个机器,以此达到从集群里模拟某机器宕机(不是从集群删除)。如果需要,使用goreman来处理 比如,我想停止etcd2 这个机器.\goremantest.exe run stop etcd2 重启etcd2就是.\goremantest.exe run restart etcd2

转载自:https://juejin.cn/post/7377200392058257423
评论
请登录