Skip to content

Instantly share code, notes, and snippets.

@saiprasad1996
Created November 18, 2017 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saiprasad1996/1aeb3a7e053cbdac3612d22fc9316c93 to your computer and use it in GitHub Desktop.
Save saiprasad1996/1aeb3a7e053cbdac3612d22fc9316c93 to your computer and use it in GitHub Desktop.
Installing lampp stack on ubuntu server along with nodejs and pip
sudo apt-get update
sudo apt-get install apache2
sudo apt-get install mysql-server
sudo apt-get install curl
sudo apt-get install php libapache2-mod-php php-mcrypt php-mysql
echo "Restarting Apache2 server"
sudo service apache2 restart
sudo systemctl status apache2
wget -v https://bootstrap.pypa.io/get-pip.py
sudo python3 get-pip.py
echo "Installing NodeJS"
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment