Forked from sanjid133/Install etcd On Ubuntu 16.04.md
Created
January 26, 2019 19:05
-
-
Save lucasrpb/684266a9635e9eb1184e8373061e31e3 to your computer and use it in GitHub Desktop.
Install etcd On Ubuntu 16.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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