etcdctl是一个提供简洁命令的etcd客户端,使用etcdctl可以直接和etcd服务打交道,对etcd中的键值对进行增删改查。
安装etcdctl
下载etcdctl工具
下载地址:etcdctl工具
解压安装
测试是否安装成功
常用etcdl命令
使用etcdctl v3版本,需要设置环境变量ETCDCTL_API=3
etcdctl --endpoints=$ENDPOINTS put foo "Hello World" | 将{key:foo, value: Hello World!}的键值对写入etcd |
etcdctl --endpoints=$ENDPOINTS get foo | 查找etcd key为foo对应的value |
etcdctl --endpoints=$ENDPOINTS delete foo | 删除key为foo的键值对 |