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/b22db80dc2aad57f30ff5fcf1f9cba8c to your computer and use it in GitHub Desktop.
Save LinuxDevOpsGirl/b22db80dc2aad57f30ff5fcf1f9cba8c to your computer and use it in GitHub Desktop.
Install WordPress with LEMP on Ubuntu
#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
@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-07 15-25-37

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-07 15-25-41

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-07 15-26-07

@LinuxDevOpsGirl
Copy link
Author

Screenshot from 2021-11-07 15-26-19

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