mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
etcd: add page (#5007)
This commit is contained in:
parent
05cdce5001
commit
051ce4819b
20
pages/common/etcd.md
Normal file
20
pages/common/etcd.md
Normal file
@ -0,0 +1,20 @@
|
||||
# etcd
|
||||
|
||||
> A distributed, reliable key-value store for the most critical data of a distributed system.
|
||||
> More information: <https://etcd.io>.
|
||||
|
||||
- Start a single-node etcd cluster:
|
||||
|
||||
`etcd`
|
||||
|
||||
- Start a single-node etcd cluster, listening for client requests on a custom url:
|
||||
|
||||
`etcd --advertise-client-urls {{http://127.0.0.1:1234}} --listen-client-urls {{http://127.0.0.1:1234}}`
|
||||
|
||||
- Start a single-node etcd cluster with a custom name:
|
||||
|
||||
`etcd --name {{my_etcd_cluster}}`
|
||||
|
||||
- Start a single-node etcd cluster with extensive metrics available at http://localhost:2379/debug/pprof/:
|
||||
|
||||
`etcd --enable-pprof --metrics extensive`
|
Loading…
Reference in New Issue
Block a user