Skip to content

v0.5.0-alpha.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@philips philips released this 08 Nov 00:51

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