1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/etcd.md
Lena 8d3737dcbf
pages/*: add < > around links in example descriptions (#10594)
* pages/*: add `< >` around links in example descriptions

* Apply suggestions from code review

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* apm: add `< >` to the English page

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-09-10 18:51:33 +05:30

20 lines
619 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`