Created
November 7, 2021 09:41
-
-
Save LinuxDevOpsGirl/b22db80dc2aad57f30ff5fcf1f9cba8c to your computer and use it in GitHub Desktop.
Install WordPress with LEMP on Ubuntu
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
#Youtubr: https://youtu.be/d-XUH0jVp9I | |
sudo apt update -y | |
sudo apt-get upgrade -y | |
sudo apt install build-essential checkinstall | |
sudo apt install ubuntu-restricted-extras | |
sudo apt install software-properties-common | |
sudo apt upgrade -o APT::Get::Show-Upgraded=true | |
sudo apt install apt-show-versions | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install nginx | |
sudo apt install mariadb-server mariadb-client | |
nginx -t | |
systemctl restart nginx | |
systemctl reload nginx | |
systemctl restart mariadb | |
systemctl restart php7.4-fpm | |
# visit http://localhost/ | |
or 0.0.0.0 or ip address |
Author
LinuxDevOpsGirl
commented
Nov 7, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment