etcd

Distributed reliable key-value store for the most critical data of a distributed system

APACHE-2.0 License

Downloads
1.1K
Stars
46.2K
Committers
1K

Bot releases are visible (Hide)

etcd - v2.0.10

Published by yichengq over 9 years ago

Changelog

  • [GH2549] proxy shuffles endpoints to avoid being stuck to one member
  • [GH2488, 2226] stop using resolved address to avoid TLS failure.
  • [GH2645] fix the bug that machine power-off might lead to corrupted wal.
  • [GH2665] fix the bug that etcdserver.Send does not print correct error log for messages to removed members
  • [GH2664] etcdctl backup tool uses new file layout
  • [GH2684] fix the bug that PUT request with prevExist=true and prevIndex/prevValue set is not parsed to CompareAndSwap
  • [GH2661] fix the bug that etcd failed to recovery from recoverable WALs.
  • [GH2721] improve etcdctl help doc by adding ‘extended’ to output format

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.10/etcd-v2.0.10-darwin-amd64.zip -o etcd-v2.0.10-darwin-amd64.zip
unzip etcd-v2.0.10-darwin-amd64.zip
cd etcd-v2.0.10-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.10/etcd-v2.0.10-linux-amd64.tar.gz -o etcd-v2.0.10-linux-amd64.tar.gz
tar xzvf etcd-v2.0.10-linux-amd64.tar.gz
cd etcd-v2.0.10-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.10

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.10
etcd - v2.0.9

Published by yichengq over 9 years ago

Changelog

  • [GH2622] etcd watchers no longer hang under when many watchers watch the same key.
  • [GH2638] etcdctl now support import hidden keys from the given snapshot.

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.9/etcd-v2.0.9-darwin-amd64.zip -o etcd-v2.0.9-darwin-amd64.zip
unzip etcd-v2.0.9-darwin-amd64.zip
cd etcd-v2.0.9-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.9/etcd-v2.0.9-linux-amd64.tar.gz -o etcd-v2.0.9-linux-amd64.tar.gz
tar xzvf etcd-v2.0.9-linux-amd64.tar.gz
cd etcd-v2.0.9-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.9

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.9
etcd - v2.0.8

Published by yichengq over 9 years ago

Changelog

  • etcd now supports IPv6
  • etcd now verifies the heartbeat and election flags earlier in the startup process to avoid runtime panics.
  • etcd now ignores extra files found in the data directory during start up
  • etcd proxy no longer fails to restart after initial configuration
  • The -initial-cluster flag is no longer required when bootstrapping a single member cluster with the -name flag set
  • Fix store statistic reporting issue
  • Removal of consensus-based cluster restarts for upgrades due to bugs in etcd 0.4's go-raft implementation
  • add ‘etcdctl import’ command to import the migration snap generated in v0.4.8 etcd to 2.0 etcd cluster
  • etcdctl takes an additional 2379, which is the IANA port of etcd client URL, as the default port
  • etcd no longer builds debugging tools into bin/ directory

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.8/etcd-v2.0.8-darwin-amd64.zip -o etcd-v2.0.8-darwin-amd64.zip
unzip etcd-v2.0.8-darwin-amd64.zip
cd etcd-v2.0.8-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.8/etcd-v2.0.8-linux-amd64.tar.gz -o etcd-v2.0.8-linux-amd64.tar.gz
tar xzvf etcd-v2.0.8-linux-amd64.tar.gz
cd etcd-v2.0.8-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.8

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.8
etcd - v0.4.9

Published by yichengq over 9 years ago

Changelog

  • new /v2/migration/snapshot endpoint to support creating point-in-time snapshot.
    the snapshot will be returned in HTTP body be default
    the snapshot will be saved under data-dir if disk=true
  • documentation about default value of --bind-addr and --peer-bind-addr is fixed

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.4.9/etcd-v0.4.9-darwin-amd64.zip -o etcd-v0.4.9-darwin-amd64.zip.
unzip etcd-v0.4.9-darwin-amd64.zip.
cd etcd-v0.4.9-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.4.9/etcd-v0.4.9-linux-amd64.tar.gz -o etcd-v0.4.9-linux-amd64.tar.gz
tar xzvf etcd-v0.4.9-linux-amd64.tar.gz
cd etcd-v0.4.9-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /etc/ssl/certs/:/etc/ssl/certs/  quay.io/coreos/etcd:v0.4.9

Open another terminal:

docker run --net=host quay.io/coreos/etcd:v0.4.9 /etcdctl set mykey "this is awesome"
docker run --net=host quay.io/coreos/etcd:v0.4.9 /etcdctl get mykey
etcd - v2.0.5

Published by yichengq over 9 years ago

Changelog

  • Fix a minor voting issue in raft. Under unique scenarios it was possible that two nodes in a raft cluster could be elected leader for a specific term.
  • Fix unexpected HTTPS to HTTP downgrade when TLS certs and keys are not provided.
  • Fix an early file unlock issue in WAL. This fix was done to improve safety of the etcd WAL implementation in preparation for the etcd 2.1.0 release.
  • Fix frequent i/o timeout issues during peer communication.
  • Improved documentation around setting up an etcd cluster.

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.5/etcd-v2.0.5-darwin-amd64.zip -o etcd-v2.0.5-darwin-amd64.zip
unzip etcd-v2.0.5-darwin-amd64.zip
cd etcd-v2.0.5-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.5/etcd-v2.0.5-linux-amd64.tar.gz -o etcd-v2.0.5-linux-amd64.tar.gz
tar xzvf etcd-v2.0.5-linux-amd64.tar.gz
cd etcd-v2.0.5-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.5

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.5
etcd - v2.0.4

Published by yichengq over 9 years ago

Changelog

  • etcd now builds correctly on Windows
  • Add documentation about running etcd in Docker containers
  • Bugfix: etcd fails to be killed by signals when run as pid 1
  • Bugfix: a new etcd member may get outdated cluster info from a snapshot, instead of the current peers

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.4/etcd-v2.0.4-darwin-amd64.zip -o etcd-v2.0.4-darwin-amd64.zip
unzip etcd-v2.0.4-darwin-amd64.zip
cd etcd-v2.0.4-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.4/etcd-v2.0.4-linux-amd64.tar.gz -o etcd-v2.0.4-linux-amd64.tar.gz
tar xzvf etcd-v2.0.4-linux-amd64.tar.gz
cd etcd-v2.0.4-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.4

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.4
etcd - v2.0.3

Published by yichengq over 9 years ago

Changelog

  • Fix static building of etcd binary
  • Fix the bug of removing user data under /_etcd in migration
  • Fix the bug of saving snapshot panic
  • Fix the bug of recovering transport wrongly
  • Fix the bug of skipping cluster check in discovery bootstrap
  • Add support for graceful shutdown when receives SIGINT and SIGTERM

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.3/etcd-v2.0.3-darwin-amd64.zip -o etcd-v2.0.3-darwin-amd64.zip
unzip etcd-v2.0.3-darwin-amd64.zip
cd etcd-v2.0.3-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.3/etcd-v2.0.3-linux-amd64.tar.gz -o etcd-v2.0.3-linux-amd64.tar.gz
tar xzvf etcd-v2.0.3-linux-amd64.tar.gz
cd etcd-v2.0.3-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.3

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.3
etcd - v2.0.2

Published by yichengq over 9 years ago

Changelog

https://groups.google.com/forum/#!topic/etcd-dev/iKZ82i1nX08

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.2/etcd-v2.0.2-darwin-amd64.zip -o etcd-v2.0.2-darwin-amd64.zip
unzip etcd-v2.0.2-darwin-amd64.zip
cd etcd-v2.0.2-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.2/etcd-v2.0.2-linux-amd64.tar.gz -o etcd-v2.0.2-linux-amd64.tar.gz
tar xzvf etcd-v2.0.2-linux-amd64.tar.gz
cd etcd-v2.0.2-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.2

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.2
etcd - v2.0.0

Published by philips over 9 years ago

Changelog

https://coreos.com/blog/etcd-2.0-release-first-major-stable-release/

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.0/etcd-v2.0.0-darwin-amd64.zip -o etcd-v2.0.0-darwin-amd64.zip
unzip etcd-v2.0.0-darwin-amd64.zip
cd etcd-v2.0.0-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.0/etcd-v2.0.0-linux-amd64.tar.gz -o etcd-v2.0.0-linux-amd64.tar.gz
tar xzvf etcd-v2.0.0-linux-amd64.tar.gz
cd etcd-v2.0.0-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /usr/share/ca-certificates/:/etc/ssl/certs quay.io/coreos/etcd:v2.0.0

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.0
etcd - v2.0.0-rc.1

Published by philips almost 10 years ago

Changelog

https://coreos.com/blog/etcd-2-0-release-candidate/

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.0-rc.1/etcd-v2.0.0-rc.1-darwin-amd64.zip -o etcd-v2.0.0-rc.1-darwin-amd64.zip
unzip etcd-v2.0.0-rc.1-darwin-amd64.zip
cd etcd-v2.0.0-rc.1-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v2.0.0-rc.1/etcd-v2.0.0-rc.1-linux-amd64.tar.gz -o etcd-v2.0.0-rc.1-linux-amd64.tar.gz
tar xzvf etcd-v2.0.0-rc.1-linux-amd64.tar.gz
cd etcd-v2.0.0-rc.1-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /etc/ssl/certs/:/etc/ssl/certs/ quay.io/coreos/etcd:v2.0.0_rc.1

ACI/Rocket

To get started with Rocket on Linux run the following in a terminal:

rkt run coreos.com/etcd:v2.0.0-rc.1
etcd - v0.5.0-alpha.5

Published by philips almost 10 years ago

Changelog

https://groups.google.com/forum/#!topic/etcd-dev/c16-V7f1bu4

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.5/etcd-v0.5.0-alpha.5-darwin-amd64.zip -o etcd-v0.5.0-alpha.5-darwin-amd64.zip
unzip etcd-v0.5.0-alpha.5-darwin-amd64.zip
cd etcd-v0.5.0-alpha.5-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.5/etcd-v0.5.0-alpha.5-linux-amd64.tar.gz -o etcd-v0.5.0-alpha.5-linux-amd64.tar.gz
tar xzvf etcd-v0.5.0-alpha.5-linux-amd64.tar.gz
cd etcd-v0.5.0-alpha.5-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /etc/ssl/certs/:/etc/ssl/certs/ quay.io/coreos/etcd:v0.5.0_alpha.5
etcd - v0.5.0-alpha.4

Published by yichengq almost 10 years ago

Changelog

https://groups.google.com/forum/#!topic/etcd-dev/WcY6k67zmOQ

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.4/etcd-v0.5.0-alpha.4-darwin-amd64.zip -o etcd-v0.5.0-alpha.4-darwin-amd64.zip
unzip etcd-v0.5.0-alpha.4-darwin-amd64.zip
cd etcd-v0.5.0-alpha.4-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.4/etcd-v0.5.0-alpha.4-linux-amd64.tar.gz -o etcd-v0.5.0-alpha.4-linux-amd64.tar.gz
tar xzvf etcd-v0.5.0-alpha.4-linux-amd64.tar.gz
cd etcd-v0.5.0-alpha.4-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /etc/ssl/certs/:/etc/ssl/certs/ quay.io/coreos/etcd:v0.5.0_alpha.4
etcd - v0.5.0-alpha.3

Published by xiang90 almost 10 years ago

Changelog

https://groups.google.com/forum/#!topic/etcd-dev/12f9HND_djk

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.3/etcd-v0.5.0-alpha.3-darwin-amd64.zip -o etcd-v0.5.0-alpha.3-darwin-amd64.zip.
unzip etcd-v0.5.0-alpha.3-darwin-amd64.zip.
cd etcd-v0.5.0-alpha.3-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.3/etcd-v0.5.0-alpha.3-linux-amd64.tar.gz -o etcd-v0.5.0-alpha.3-linux-amd64.tar.gz
tar xzvf etcd-v0.5.0-alpha.3-linux-amd64.tar.gz
cd etcd-v0.5.0-alpha.3-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /etc/ssl/certs/:/etc/ssl/certs/ quay.io/coreos/etcd:v0.5.0_alpha.3

Open another terminal:

docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.3 /etcdctl set mykey "this is awesome"
docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.3 /etcdctl get mykey
etcd - v0.5.0-alpha.2

Published by philips almost 10 years ago

Changelog

https://groups.google.com/forum/#!topic/etcd-dev/BaZ7T__yepo

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.2/etcd-v0.5.0-alpha.2-darwin-amd64.zip -o etcd-v0.5.0-alpha.2-darwin-amd64.zip.
unzip etcd-v0.5.0-alpha.2-darwin-amd64.zip.
cd etcd-v0.5.0-alpha.2-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.2/etcd-v0.5.0-alpha.2-linux-amd64.tar.gz -o etcd-v0.5.0-alpha.2-linux-amd64.tar.gz
tar xzvf etcd-v0.5.0-alpha.2-linux-amd64.tar.gz
cd etcd-v0.5.0-alpha.2-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001  quay.io/coreos/etcd:v0.5.0_alpha.2

Open another terminal:

docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.2 /etcdctl set mykey "this is awesome"
docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.2 /etcdctl get mykey
etcd - v0.5.0-alpha.1

Published by philips almost 10 years ago

Changelog

https://groups.google.com/forum/#!topic/etcd-dev/8_0ciJDjRhY

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.1/etcd-v0.5.0-alpha.1-darwin-amd64.zip -o etcd-v0.5.0-alpha.1-darwin-amd64.zip.
unzip etcd-v0.5.0-alpha.1-darwin-amd64.zip.
cd etcd-v0.5.0-alpha.1-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.1/etcd-v0.5.0-alpha.1-linux-amd64.tar.gz -o etcd-v0.5.0-alpha.1-linux-amd64.tar.gz
tar xzvf etcd-v0.5.0-alpha.1-linux-amd64.tar.gz
cd etcd-v0.5.0-alpha.1-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001  quay.io/coreos/etcd:v0.5.0_alpha.1

Open another terminal:

docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.1 /etcdctl set mykey "this is awesome"
docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.1 /etcdctl get mykey
etcd -

Published by philips almost 10 years ago

Changelog

https://groups.google.com/forum/#!topic/etcd-dev/wmndjzBNdZo

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.0/etcd-v0.5.0-alpha.0-darwin-amd64.zip -o etcd-v0.5.0-alpha.0-darwin-amd64.zip 
unzip etcd-v0.5.0-alpha.0-darwin-amd64.zip 
cd etcd-v0.5.0-alpha.0-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.5.0-alpha.0/etcd-v0.5.0-alpha.0-linux-amd64.tar.gz -o etcd-v0.5.0-alpha.0-linux-amd64.tar.gz
tar xzvf etcd-v0.5.0-alpha.0-linux-amd64.tar.gz
cd etcd-v0.5.0-alpha.0-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001  quay.io/coreos/etcd

Open another terminal:

docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.0 /etcdctl set mykey "this is awesome"
docker run --net=host quay.io/coreos/etcd:v0.5.0_alpha.0 /etcdctl get mykey
etcd -

Published by philips about 10 years ago

Changelog

  • Fix long-term timer leak (#900, #875, #868, #904)
  • Fix Running field in standby_info file (#881)
  • Add quorum=true query parameter for GET requests (#866, #883)
  • Add Access-Control-Allow-Headers header for CORS requests (#886)
  • Various documentation improvements (#907, #882)

Getting Started

OS X

To get started on OSX run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.4.6/etcd-v0.4.6-darwin-amd64.zip -o etcd-v0.4.6-darwin-amd64.zip.
unzip etcd-v0.4.6-darwin-amd64.zip.
cd etcd-v0.4.6-darwin-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Linux

To get started on Linux run the following in a terminal:

curl -L  https://github.com/coreos/etcd/releases/download/v0.4.6/etcd-v0.4.6-linux-amd64.tar.gz -o etcd-v0.4.6-linux-amd64.tar.gz
tar xzvf etcd-v0.4.6-linux-amd64.tar.gz
cd etcd-v0.4.6-linux-amd64
./etcd

Open another terminal:

# Press enter to background etcd
./etcdctl set mykey "this is awesome"
./etcdctl get mykey

Docker

To get started with Docker on Linux run the following in a terminal:

docker run -p 4001:4001 -v /etc/ssl/certs/:/etc/ssl/certs/  quay.io/coreos/etcd:v0.4.6

Open another terminal:

docker run --net=host quay.io/coreos/etcd:v0.4.6 /etcdctl set mykey "this is awesome"
docker run --net=host quay.io/coreos/etcd:v0.4.6 /etcdctl get mykey
etcd - v0.4.5

Published by philips over 10 years ago

v0.4.5 contains a number of bug fixes. The most significant change is adding read/write timeouts to the HTTP server mux for the client to keep file descriptor use from growing when client connections don't get properly closed.

  • Flush headers immediatly on wait=true requests (#877)
  • Add ETCD_HTTP_READ_TIMEOUT and ETCD_HTTP_WRITE_TIMEOUT (#880)
  • Add ETCDCTL_PEERS configuration to etcdctl (coreos/etcdctl#95)
  • etcdctl takes stdin for mk (coreos/etcdctl#91)
etcd - v0.4.4

Published by philips over 10 years ago

Minor bugfix release for etcdctl, logging and documentation.

  • Fix --no-sync flag in etcdctl (#83)
  • Improved logging for machine removal (#844)
  • Various documentation improvements (#858, #851, #847)
etcd - v0.4.3

Published by philips over 10 years ago

  • Avoid panic() on truncated or unexpected log data (#834, #833)
  • Fix missing stats field (#807)
  • Lengthen default peer removal delay to 30mins (#835)
  • Reduce logging on heartbeat timeouts (#836)

Getting Started

See https://github.com/coreos/etcd#running

Package Rankings
Top 0.03% on Proxy.golang.org
Top 7.75% on Formulae.brew.sh
Top 3.79% on Alpine-edge
Top 21.6% on Conda-forge.org
Badges
Extracted from project README
Go Report Card Coverage Tests codeql-analysis Docs Godoc Releases LICENSE OpenSSF Scorecard