Last active
October 12, 2015 12:50
-
-
Save franciscocpg/a293aa54af502fb58fc7 to your computer and use it in GitHub Desktop.
This file contains 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
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Remote install
bash <(curl -s https://gist.githubusercontent.com/franciscocpg/a293aa54af502fb58fc7/raw/)