tldr/pages/common/etcd.md
bl-ue 8ebd171d6f
*: fix typos reported by Hunspell (#5848)
Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Seth Falco <seth@falco.fun>
Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
2021-05-20 16:13:41 -04:00

21 lines
617 B
Markdown

# 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`