Last active
November 14, 2015 14:26
-
-
Save Shaltz/b73f7cfd36ca98046a2d to your computer and use it in GitHub Desktop.
Install LAMP server on ubuntu
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
# Install packages | |
sudo apt-get install apache2 mysql-server mysql-client php5 php5-mysql php5-intl libapache2-mod-php5 phpmyadmin | |
# Access phpMyAdmin | |
http://serverIP/phpmyadmin/ | |
# If doesn't work, edit | |
sudo nano /etc/apache2/apache2.conf | |
# and add to the bottom of the file | |
Include /etc/phpmyadmin/apache.conf | |
# restart apache 2 server | |
service apache2 restart | |
# or on ubuntu 15.04 | |
sudo systemctl restart apache2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment