Created
September 21, 2020 17:24
-
-
Save LinuxlinkedBD/1136bf8dddda43ad08a789133bfc4629 to your computer and use it in GitHub Desktop.
How to Install LAMP stack on Ubuntu 20.04 LTS
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
If you need LAMP Stack service, contact with me: | |
Telegram: https://t.me/linuxlinked | |
email: [email protected] | |
WhatsApp: https://wa.me/8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
#=================================================================# | |
# Install Apache to check from web browser using 0.0.0.0 or localhost, check version, start,stop & restart Apache into Ubuntu | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install apache2 | |
apache2 -v | |
sudo service apache2 start | |
sudo systemctl enable apache2 | |
sudo service apache2 stop | |
sudo service apache2 start | |
sudo service apache2 restart | |
# Visit: http://localhost/ to check apache | |
# Install MySQL & check version, start,stop & restart Apache | |
sudo apt install mysql-server | |
sudo mysql_secure_installation | |
mysql --version | |
sudo service mysql start | |
sudo service mysql enable | |
sudo service mysql start | |
sudo service mysql restart | |
# Create MySQL DB, User | |
sudo mysql -u root -p | |
#Granting all privilege to newly created user on db | |
FLUSH PRIVILEGES; | |
EXIT; | |
# Install PHP & check version | |
sudo apt install php-pear php-fpm php-dev php-zip php-curl php-xmlrpc php-gd php-mysql php-mbstring php-xml libapache2-mod-php | |
php --version | |
#browse localhost | |
#lamp #stack #linux #ubuntu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment