mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
etcd: add Chinese translation (#6032)
This commit is contained in:
parent
9b654dd6c1
commit
0731957862
1 changed files with 20 additions and 0 deletions
20
pages.zh/common/etcd.md
Normal file
20
pages.zh/common/etcd.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# etcd
|
||||
|
||||
> 分布式,可靠的键值存储,用于分布式系统中存储最关键的数据。
|
||||
> 更多信息见:<https://etcd.io>.
|
||||
|
||||
- 启动单节点 etcd 集群:
|
||||
|
||||
`etcd`
|
||||
|
||||
- 启动一个单节点 etcd 集群,在自定义 URL 上侦听客户端请求:
|
||||
|
||||
`etcd --advertise-client-urls {{http://127.0.0.1:1234}} --listen-client-urls {{http://127.0.0.1:1234}}`
|
||||
|
||||
- 使用自定义名称启动单节点 etcd 集群:
|
||||
|
||||
`etcd --name {{my_etcd_cluster}}`
|
||||
|
||||
- 启动单节点 etcd 集群,同时可以在这里看到大量监控指标 http://localhost:2379/debug/pprof/:
|
||||
|
||||
`etcd --enable-pprof --metrics extensive`
|
Loading…
Add table
Reference in a new issue