etcd命令

比较重要的配置

-name 节点名称,默认是UUID
-data-dir 保存日志和快照的目录,默认为当前工作目录
-addr 公布的ip地址和端口。 默认为127.0.0.1:2379
-bind-addr 用于客户端连接的监听地址,默认为-addr配置
-peers 集群成员逗号分隔的列表,例如 127.0.0.1:2380,127.0.0.1:2381
-peer-addr 集群服务通讯的公布的IP地址,默认为 127.0.0.1:2380.
-peer-bind-addr 集群服务通讯的监听地址,默认为-peer-addr配置
上述配置也可以设置配置文件,默认为/etc/etcd/etcd.conf

 ~  etcdctl -h
NAME:
   etcdctl - A simple command line client for etcd.

USAGE:
   etcdctl [global options] command [command options] [arguments...]

VERSION:
   2.2.1

COMMANDS:
   backup   backup an etcd directory
   cluster-health check the health of the etcd cluster
   mk     make a new key with a given value
   mkdir    make a new directory
   rm     remove a key or a directory
   rmdir    removes the key if it is an empty directory or a key-value pair
   get      retrieve the value of a key
   ls     retrieve a directory
   set      set the value of a key
   setdir   create a new or existing directory
   update   update an existing key with a given value
   updatedir    update an existing directory
   watch    watch a key for changes
   exec-watch   watch a key for changes and exec an executable
   member   member add, remove and list subcommands
   import   import a snapshot to a cluster
   user     user add, grant and revoke subcommands
   role     role add, grant and revoke subcommands
   auth     overall auth controls
   help, h    Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --debug      output cURL commands which can be used to reproduce the request
   --no-sync      don't synchronize cluster information before sending request
   --output, -o 'simple'  output response in the given format (`simple`, `extended` or `json`)
   --discovery-srv, -D    domain name to query for SRV records describing cluster endpoints
   --peers, -C      a comma-delimited list of machine addresses in the cluster (default: "http://127.0.0.1:4001,http://127.0.0.1:2379")
   --endpoint       a comma-delimited list of machine addresses in the cluster (default: "http://127.0.0.1:4001,http://127.0.0.1:2379")
   --cert-file      identify HTTPS client using this SSL certificate file
   --key-file       identify HTTPS client using this SSL key file
   --ca-file      verify certificates of HTTPS-enabled servers using this CA bundle
   --username, -u     provide username[:password] and prompt if password is not supplied.
   --timeout '1s'   connection timeout per request
   --total-timeout '5s'   timeout for the command execution (except watch)
   --help, -h     show help
   --version, -v    print the version

数据库操作

数据库操作围绕对键值和目录的 CRUD (符合 REST 风格的一套操作:Create)完整生命周期的管理。

etcd 在键的组织上采用了层次化的空间结构(类似于文件系统中目录的概念),用户指定的键可以为单独的名字,如testkey,此时实际上放在根目录 / 下面,也可以为指定目录结构,如 cluster1/node2/testkey,则将创建相应的目录结构。
注:CRUD 即 Create, Read, Update, Delete,是符合 REST 风格的一套 API 操作。

#set
指定某个键的值。例如
➜  ~  etcdctl set /testdir/testkey "Hello world"
Hello world
支持的选项包括:
--ttl '0'            该键值的超时时间(单位为秒),不配置(默认为 0)则永不超时
--swap-with-value value 若该键现在的值是 value,则进行设置操作
--swap-with-index '0'    若该键现在的索引值是指定索引,则进行设置操作
#get
获取指定键的值。例如
➜  ~  etcdctl get /testdir/testkey
Hello world
当键不存在时,则会报错。例如
➜  ~  etcdctl get /testdir/testkey2
Error:  100: Key not found (/testdir/testkey2) [18]
支持的选项为
--sort    对结果进行排序
--consistent 将请求发给主节点,保证获取内容的一致性
#update
当键存在时,更新值内容。例如
➜  ~  etcdctl update /testdir/testkey "Hello"
Hello
当键不存在时,则会报错。例如
➜  ~  etcdctl update /testdir/testkey2 "Hello"
Error:  100: Key not found (/testdir/testkey2) [19]
支持的选项为
--ttl '0'    超时时间(单位为秒),不配置(默认为 0)则永不超时
#rm
删除某个键值。例如
➜  ~  etcdctl rm /testdir/testkey
PrevNode.Value: Hello
当键不存在时,则会报错。例如
➜  ~  etcdctl rm /testdir/testkey
Error:  100: Key not found (/testdir/testkey) [20]
支持的选项为
--dir        如果键是个空目录或者键值对则删除
--recursive        删除目录和所有子键
--with-value     检查现有的值是否匹配
--with-index '0'    检查现有的 index 是否匹配
#mk
如果给定的键不存在,则创建一个新的键值。例如
➜  ~  etcdctl mk /testdir/testkey "Hello world"
Hello world
当键存在的时候,执行该命令会报错,例如
➜  ~  etcdctl mk /testdir/testkey "Hello world"
Error:  105: Key already exists (/testdir/testkey) [21]
支持的选项为
--ttl '0'    超时时间(单位为秒),不配置(默认为 0)则永不超时
#mkdir
如果给定的键目录不存在,则创建一个新的键目录。例如
➜  ~  etcdctl mkdir testdir2
当键目录存在的时候,执行该命令会报错,例如
➜  ~  etcdctl mkdir testdir2
Error:  105: Key already exists (/testdir2) [22]
支持的选项为
--ttl '0'    超时时间(单位为秒),不配置(默认为 0)则永不超时
setdir
创建一个键目录,无论存在与否。
支持的选项为
--ttl '0'    超时时间(单位为秒),不配置(默认为 0)则永不超时
updatedir
更新一个已经存在的目录。 支持的选项为
--ttl '0'    超时时间(单位为秒),不配置(默认为 0)则永不超时
rmdir
删除一个空目录,或者键值对。
➜  ~  etcdctl setdir dir1
➜  ~  etcdctl rmdir dir1
若目录不空,会报错
➜  ~  etcdctl set /dir/testkey hi
hi
➜  ~  etcdctl rmdir /dir
Error:  108: Directory not empty (/dir) [29]
ls
列出目录(默认为根目录)下的键或者子目录,默认不显示子目录中内容。
例如
➜  ~  etcdctl ls
/testdir
/testdir2
/dir
➜  ~  etcdctl ls dir
/dir/testkey
支持的选项包括
--sort    将输出结果排序
--recursive    如果目录下有子目录,则递归输出其中的内容
-p        对于输出为目录,在最后添加 `/` 进行区分
非数据库操作
backup
备份 etcd 的数据。
支持的选项包括
--data-dir         etcd 的数据目录
--backup-dir     备份到指定路径
watch
监测一个键值的变化,一旦键值发生更新,就会输出最新的值并退出。
例如,用户更新 testkey 键值为 Hello watch。
➜  ~  etcdctl get /testdir/testkey
Hello world
➜  ~  etcdctl set /testdir/testkey "Hello watch"
Hello watch
➜  ~  etcdctl watch testdir/testkey
Hello watch
支持的选项包括
--forever        一直监测,直到用户按 `CTRL+C` 退出
--after-index '0'    在指定 index 之前一直监测
--recursive        返回所有的键值和子键值
exec-watch
监测一个键值的变化,一旦键值发生更新,就执行给定命令。
例如,用户更新 testkey 键值。
➜  ~  etcdctl exec-watch testkey -- sh -c 'ls'
default.etcd
Documentation
etcd
etcdctl
etcd-migrate
README-etcdctl.md
README.md
支持的选项包括
--after-index '0'    在指定 index 之前一直监测
--recursive        返回所有的键值和子键值
member
通过 list、add、remove 命令列出、添加、删除 etcd 实例到 etcd 集群中。
例如本地启动一个 etcd 服务实例后,可以用如下命令进行查看。
$ etcdctl member list
ce2a822cea30bfca: name=default peerURLs=http://localhost:2380,http://localhost:7001 clientURLs=http://localhost:2379,http://localhost:4001
命令选项
--debug 输出 cURL 命令,显示执行命令的时候发起的请求
--no-sync 发出请求之前不同步集群信息
--output, -o 'simple' 输出内容的格式 (simple 为原始信息,json 为进行json格式解码,易读性好一些)
--peers, -C 指定集群中的同伴信息,用逗号隔开 (默认为: "127.0.0.1:4001")
--cert-file HTTPS 下客户端使用的 SSL 证书文件
--key-file HTTPS 下客户端使用的 SSL 密钥文件
--ca-file 服务端使用 HTTPS 时,使用 CA 文件进行验证
--help, -h 显示帮助命令信息
--version, -v 打印版本信息
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容