Created
November 18, 2017 09:31
-
-
Save saiprasad1996/1aeb3a7e053cbdac3612d22fc9316c93 to your computer and use it in GitHub Desktop.
Installing lampp stack on ubuntu server along with nodejs and pip
This file contains hidden or 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 | |
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