Created
November 2, 2021 13:36
-
-
Save LinuxDevOpsGirl/0998865e79d45185fb8d718d41da6c16 to your computer and use it in GitHub Desktop.
Install LEMP Stack with PhpMyAdmin in Ubuntu 20.04
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
#youtube: https://youtu.be/RbQKErL10dY | |
sudo apt upgrade -y | |
sudo apt -f install | |
sudo apt autoremove | |
sudo apt -y autoclean | |
sudo apt -y clean | |
sudo apt update | |
sudo reboot | |
# Install NGINX to check from web browser using 0.0.0.0 or localhost, check version, start,stop & restart NGINX into Ubuntu | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install nginx | |
sudo service mariadb enable | |
sudo service mariadb start | |
sudo service mariadb restart | |
sudo systemctl restart nginx | |
sudo systemctl reload nginx | |
sudo systemctl restart php7.4-fpm | |
sudo systemctl restart mariadb | |
# visit: http://localhost/phpmyadmin/ |
Author
LinuxDevOpsGirl
commented
Nov 2, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment