Skip to content

Instantly share code, notes, and snippets.

@franciscocpg
Last active October 12, 2015 12:50
Show Gist options
  • Save franciscocpg/a293aa54af502fb58fc7 to your computer and use it in GitHub Desktop.
Save franciscocpg/a293aa54af502fb58fc7 to your computer and use it in GitHub Desktop.
# For ubuntu 14.04
# Needed repositories
sudo add-apt-repository -y ppa:vbernat/haproxy-1.5
echo "deb https://dl.bintray.com/magnetic-io/upstart trusty main" | sudo tee -a /etc/apt/sources.list
curl https://bintray.com/user/downloadSubjectPublicKey?username=bintray | sudo apt-key add -
sudo apt-get update
# install ha proxy 1.5
sudo apt-get install -y haproxy
# install vamp-core
sudo apt-get install -y vamp-core
# Check the application.conf file at /usr/share/vamp-core/conf/ and change when needed.
# After making changes, restart the application with the command:
# sudo service vamp-core restart
# install vamp-pulse
sudo apt-get install -y vamp-pulse
# Check the application.conf file at /usr/share/vamp-pulse/conf/ and change when needed.
# After making changes, restart the application with the command:
# sudo service vamp-core restart
# install vamp-router
sudo apt-get install -y vamp-router
# install vamp-cli
sudo apt-get install -y vamp-cli
# Type vamp version to check if Vamp Cli has been properly installed.
# Now export the location of the Vamp Core host and check if the CLI can talk to Vamp Core, i.e:
# export VAMP_HOST=http://localhost:8080
# vamp info
@franciscocpg
Copy link
Author

Remote install

bash <(curl -s https://gist.githubusercontent.com/franciscocpg/a293aa54af502fb58fc7/raw/)

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