美文网首页
etcd basic

etcd basic

作者: 戈壁堂 | 来源:发表于2020-08-13 19:52 被阅读0次

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功能可用来实现动态控制功能。

A concise tutorial of golang etcd

etcd架构介绍

etcd常用操作介绍

相关文章

网友评论

      本文标题:etcd basic

      本文链接:https://www.haomeiwen.com/subject/lylmdktx.html