Hello,
In this week’s feature highlight, we look at How to Install WordPress on Ubuntu 21.04

Prerequisites:
- Root access to your Ubuntu 21.04 server.
- LEMP Stack installed and running. Learn how to configure LEMP Stack
Creating database
Log into MySQL with the following command.
mysql
First, we’ll create a new database.
MariaDB [(none)]> CREATE DATABASE wordpress_db;
Next, create a new MySQL user account that we will use to operate on WordPress’s new database, with username “wordpress_user”.
MariaDB [(none)]> CREATE USER
… Read More