Skip to content

Instantly share code, notes, and snippets.

@biggora
Last active January 8, 2016 21:16
Show Gist options
  • Save biggora/02269788280940f549b9 to your computer and use it in GitHub Desktop.
Save biggora/02269788280940f549b9 to your computer and use it in GitHub Desktop.
#!/bin/bash
# NodeJS, NPM, Nginx
sudo apt-get update
sudo apt-get install nodejs-legacy npm nginx-extras -y
# RabbitMQ
sudo echo "deb http://www.rabbitmq.com/debian/ testing main" > /etc/apt/sources.list.d/rabbitmq.list
wget https://www.rabbitmq.com/rabbitmq-signing-key-public.asc
sudo apt-key add rabbitmq-signing-key-public.asc
sudo apt-get update
sudo apt-get install rabbitmq-server -y
# MariaDB 10.x
sudo echo "deb http://mariadb.kisiek.net//repo/10.0/ubuntu trusty main" > /etc/apt/sources.list.d/mariadb.list
sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
sudo apt-get update
apt-get install mariadb-server -y
# ElastcSearch 1.7.x
sudo echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
sudo apt-get update
apt-get install elasticsearch -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment