Skip to content

Instantly share code, notes, and snippets.

@CloudLinuxDeveloper
Last active April 27, 2020 09:37
Show Gist options
  • Save CloudLinuxDeveloper/f939a71d3754e239a1c522905b0ba3ff to your computer and use it in GitHub Desktop.
Save CloudLinuxDeveloper/f939a71d3754e239a1c522905b0ba3ff to your computer and use it in GitHub Desktop.
How to Install Ubuntu LAMP Stack SETUP 18.04 LTS.
# YoutTube:
# 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
put in your browser http://localhost/
# 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
CREATE DATABASE arif DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT ALL ON arif.* TO 'auser'@'localhost' IDENTIFIED BY 'Arif2019P@';
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
# Install PHPmyAdmin
sudo apt update
sudo apt install phpmyadmin php-mbstring php-gettext
# sudo nano /etc/apache2/apache2.conf
# Then add the following line to the end of the file:
# Include /etc/phpmyadmin/apache.conf
# Then restart apache:
sudo service apache2 restart
firefox http://localhost/phpmyadmin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment