Forrest logo
back to context overview

etcd

List of commands for etcd:

  • etcd:tldr:1989a etcd: Start a single-node etcd cluster with extensive metrics available at http://localhost:2379/debug/pprof/.
    $ etcd --enable-pprof --metrics extensive
    try on your machine
    explain this command
  • etcd:tldr:286b8 etcd: Start a single-node etcd cluster with a custom name.
    $ etcd --name ${my_etcd_cluster}
    try on your machine
    explain this command
  • etcd:tldr:a226e etcd: Start a single-node etcd cluster.
    $ etcd
    try on your machine
    explain this command
  • etcd:tldr:ca885 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}
    try on your machine
    explain this command
back to context overview