2020-12-12 20:07:25 +00:00
|
|
|
# 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`
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
- Start a single-node etcd cluster, listening for client requests on a custom URL:
|
2020-12-12 20:07:25 +00:00
|
|
|
|
|
|
|
`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}}`
|
|
|
|
|
2023-09-10 14:21:33 +01:00
|
|
|
- Start a single-node etcd cluster with extensive metrics available at <http://localhost:2379/debug/pprof/>:
|
2020-12-12 20:07:25 +00:00
|
|
|
|
|
|
|
`etcd --enable-pprof --metrics extensive`
|