etcd: Distributed reliable key-value store for the most critical data of a distributed system
从https://github.com/etcd-io/etcd/releases/latest下载对应操作系统的最新版本,目前(2020-08-12)为3.4.10
版本。
解压后将对应的目录添加到环境变量,或直接到对应目录下使用。
(go编译打包的服务优势:windows下也只需要一个exe文件就可以直接使用——永远的“绿色免安装”版本)
- 解压安装
-
etcd.exe --version
查看版本 - 启动etcd,
etcd.exe
执行起来。 - 检查
etcdctl.exe member list
添加key,查找key对应的值。可以使用endpoints参数指定连接的server地址
D:\tools\etcd-v3.4.10-windows-amd64>etcd.exe --version
etcd Version: 3.4.10
Git SHA: 18dfb9cca
Go Version: go1.12.17
Go OS/Arch: windows/amd64
D:\tools\etcd-v3.4.10-windows-amd64>etcdctl.exe --endpoints=127.0.0.1:2379 put testKey "value of testKey"
OK
D:\tools\etcd-v3.4.10-windows-amd64>etcdctl.exe --endpoints=127.0.0.1:2379 get testKey
testKey
value of testKey
Watcher功能可用来实现动态控制功能。
网友评论