Outline
WordPress is the most famous open-source writing for a blog framework and CMS Online. It depends on PHP and MySQL. Its highlights can be reached out with great many free modules and subjects.
In this instructional exercise we will introduce WordPress on Apache2 server and make our most memorable post.
What you'll realize
Instructions to set up WordPress
Instructions to arrange WordPress
Instructions to make first post
What you'll require
A PC running Ubuntu Server 20.04 LTS
This guide will likewise tell you the best way to design a data set for WordPress
Prerequirement
1 Fresh Installation of Ubuntu20.04 Server
2 Apache server
3 Mysql/MariaDB/PostgreSql
4 Php
The Above requirements are also known as LAMP Services
Steps to Install wordpress on Ubuntu 20.04 Server
Step 1: Update and Upgrade Repositories
sudo apt update && upgrade -y
Step 2: Enable root login
sudo sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
Step 3: Restart ssh
sudo systemctl restart ssh
Step 4: Set password for root login, by default root password is not set
sudo passwd
Step 5: Login using root credentials
ssh root@ip-address
Step 6: Install apache & libapache2-mod-php module
Step 7: Install ghostscript
apt install ghostscript -y
Step 8: Install PHP and related php packages
Step 9: Install Mysql Server
Step 10: Creation Directory, changing the ownership and download the wordpress from the link
Step 11 : Configuration Apache file for Wordpress
Step 12 : Enable wordpress, redirect rule and disable the default webpage
Step 13:Now we have to create Sql database for Wordpress
Step 14: Now we have to connect the databade with wordpress to configure
Step 15: Chaning few lines
Step 16: Open Browser and the enter the ip-address of the system
After login, the dashboard will look like
0 Comments