Skip to content

Instantly share code, notes, and snippets.

@ianunruh
Last active December 26, 2017 15:58
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save ianunruh/3908fb5eee4fe66c95b4 to your computer and use it in GitHub Desktop.
Save ianunruh/3908fb5eee4fe66c95b4 to your computer and use it in GitHub Desktop.
Install Consul on Ubuntu 14.04
#!/bin/bash
apt-get install -y curl unzip
mkdir -p /var/lib/consul
mkdir -p /usr/share/consul
mkdir -p /etc/consul/conf.d
curl -OL https://dl.bintray.com/mitchellh/consul/0.3.1_linux_amd64.zip
unzip 0.3.1_linux_amd64.zip
mv consul /usr/local/bin/consul
curl -OL https://dl.bintray.com/mitchellh/consul/0.3.1_web_ui.zip
unzip 0.3.1_web_ui.zip
mv dist /usr/share/consul/ui
@murich
Copy link

murich commented Dec 6, 2015

Seems like outdated consul version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment