Let's install...

Day 3 Assignment

Wordpress Latest

Install Wordpress

MySQL Installation

Run the following inside MySQL:

create database mydatabase;
create user 'mydbuser'@'localhost' identified by 'mypassword';
grant all privileges on mydatabase.* to 'mydbuser'@'localhost';
flush privileges;
show databases;