Created
December 7, 2020 10:29
-
-
Save LinuxlinkedBD/a6f6f45bab0ae4be0cbbc1e363951263 to your computer and use it in GitHub Desktop.
WordPress Installation with LAMP 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/yZtI9XjXffM | |
######################################################################################################################################## | |
sudo apt update | |
sudo apt install apache2 | |
sudo systemctl start apache2.service | |
sudo systemctl enable apache2.service | |
sudo systemctl restart apache2.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