Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lucasrpb/684266a9635e9eb1184e8373061e31e3 to your computer and use it in GitHub Desktop.
Save lucasrpb/684266a9635e9eb1184e8373061e31e3 to your computer and use it in GitHub Desktop.
Install etcd On Ubuntu 16.04
#!/bin/bash
curl -L https://github.com/coreos/etcd/releases/download/v3.3.1/etcd-v3.3.1-linux-amd64.tar.gz -o etcd-v3.3.1-linux-amd64.tar.gz
tar xzvf etcd-v3.3.1-linux-amd64.tar.gz
cd etcd-v3.3.1-linux-amd64
sudo cp etcd /usr/local/bin/
sudo cp etcdctl /usr/local/bin/
etcd --version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment