Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LinuxDevOpsGirl/0998865e79d45185fb8d718d41da6c16 to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/0998865e79d45185fb8d718d41da6c16 to your computer and use it in GitHub Desktop.
Install LEMP Stack with PhpMyAdmin in Ubuntu 20.04
#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/
@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-02 18-50-44

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-02 18-50-48

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-02 18-58-48

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-02 18-59-10

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment