Install new wordpress
Create your own database. Connect to the MySQL console with this command. 1 mysql -u root -p After you type the password, you can start to create the database. Of course you can change the name of the database and the user. 1 2 3 4 CREATE DATABASE wordpress; CREATE USER ‘wpuser’@’localhost’ IDENTIFIED BY ‘password’;…