v2.0.11
Changelog
- [GH2689] newly joined members no longer panic when recovering a snapshot
- [GH2705] stats no longer update before being initialized
- [GH2743] fix connection leak in proxy mode
- [GH2756] improve the reliability of the
etcdctl member remove
command - [GH2758] improve the disaster recovery documentation
- [GH2560] improve the output of the -version flag. Now includes the git-sha and Go runtime version
- [GH2761] the -advertise-client-urls flag is now required when the setting -listen-client-urls flag
- [GH2749] correct a typo in the string representation of raftLog
- [GH2751 GH2811] support filelock for Solaris and Plan 9
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.11/etcd-v2.0.11-darwin-amd64.zip -o etcd-v2.0.11-darwin-amd64.zip
unzip etcd-v2.0.11-darwin-amd64.zip
cd etcd-v2.0.11-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.11/etcd-v2.0.11-linux-amd64.tar.gz -o etcd-v2.0.11-linux-amd64.tar.gz
tar xzvf etcd-v2.0.11-linux-amd64.tar.gz
cd etcd-v2.0.11-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.11
ACI/Rocket
To get started with Rocket on Linux run the following in a terminal:
rkt run coreos.com/etcd:v2.0.11