Created
December 12, 2020 14:08
-
-
Save LinuxlinkedBD/290320f3869bc13e1741bddfdd061260 to your computer and use it in GitHub Desktop.
WordPress Installation with LEMP stack
This file contains hidden or 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
If you need complete WordPress setup, ping me on below contacts: | |
Telegram: linuxlinked | |
email: [email protected] | |
WhatsApp: +8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
YouTube: https://youtu.be/sdw8fTsGkEE | |
######################################################################################################################################## | |
sudo apt update | |
sudo apt install nginx | |
sudo systemctl start nginx.service | |
sudo systemctl enable nginx.service | |
sudo systemctl restart nginx.service | |
sudo apt-get install mariadb-server mariadb-client | |
sudo systemctl start mariadb.service | |
sudo systemctl enable mariadb.service | |
sudo systemctl status mariadb.service | |
sudo apt install php7.0 libapache2-mod-php7.0 php7.0-common | |
wget -c http://wordpress.org/latest.zip | |
unzip latest.zip | |
#Now finished the Installation Process. Visit you installed site. | |
http://localhost/wordpress/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment