1 源码
1 2 3 4 5 6
| git@github.com:Bannirui/etcd.git cd etcd git remote add upstream git@github.com:etcd-io/etcd.git git remote set-url --push upstream no_push git remote -v git checkout -b my_study
|
2 构建
在项目根目录下生成bin目录,3个可执行文件
- etcd 服务
- etcdctl 命令行工具
- etcdutl 底层工具
3 启动
3.1 服务端
可以用编译好的可执行文件,也可以在IDEA中调试,考虑到后期的调试,肯定在IDEA中比较方便,在IDEA中直接启动不用手动显式指定启动参数,全部用默认。
1 2 3 4 5 6 7 8 9 10
| ./bin/etcd \ --name node1 \ --data-dir default.etcd \ --listen-client-urls http://127.0.0.1:2379 \ --advertise-client-urls http://127.0.0.1:2379 \ --listen-peer-urls http://127.0.0.1:2380 \ --initial-advertise-peer-urls http://127.0.0.1:2380 \ --initial-cluster node1=http://127.0.0.1:2380 \ --initial-cluster-token tkn \ --initial-cluster-state new
|
3.2 客户端
1 2
| ./bin/etcdctl put foo bar ./bin/etcdctl get foo
|