Last active
January 25, 2016 19:28
-
-
Save strrife/5bbae1240b7ae5a74a81 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
sudo apt-get update -y | |
sudo apt-get install -y git | |
sudo gem install sass | |
curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927 | |
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list | |
sudo apt-get update | |
sudo apt-get install -y mongodb-org | |
sudo apt-get install -y build-essential tcl8.5 | |
wget http://download.redis.io/releases/redis-stable.tar.gz | |
tar xzf redis-stable.tar.gz | |
cd redis-stable | |
make | |
make test | |
sudo make install | |
utils/install_server.sh | |
echo 1 > /proc/sys/vm/overcommit_memory | |
sysctl vm.overcommit_memory=1 | |
sudo apt-get install -y nginx | |
sudo useradd -d /home/toto -m toto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment