Open Source Tutorials - Open Source Training
Open source training & tutorials from experienced, passionate people
chrome icon firefox icon ie icon opera icon safari icon Sings in these Browsers
A- A A+

By A Web Design

pdf icons

Creating The MySQL Database And User For Your Wordpress Installation

The install process of Wordpress creates a set of MySQL tables and populates some of them with appropriate (default) data.

It's best to create a separate database named wordpress under MySQL so that Wordpress has its own reserved data storage area under MySQL into which it will place its tables and populate them with default data appropriately if so desired.

Additionally, create a MySQL user named wordpress. Protect this user with a password and finally grant this user with full rights to the resources held in the wordpress database.

Creating A Database Under MySQL

Open a Command Window:

Start –> Run -> cmd as shown in diagram 1 and diagram 2

Start

cmd

At the system prompt Login to MySQL with login id and password created at the time of installing MySQL as shown in Diagram 3 and Diagram 4.
NOTE: I have covered the installation of MySQL in the MySQL section.

Login to Mysql


Login to Mysql

At the mysql> prompt enter:
mysql> CREATE DATABASE wordpress;

Output:
Query OK, 1 row affected (0.00 sec)

Creating Database

MySQL responds by immediately creating the wordpress database.

Creating The Wordpress User Under MySQL

Next create the user wordpress and grant this user all rights on the wordpress database controlled by a password. This information (username, password and database name) will be required at the time of installing Wordpress. Write themdown and store them safely for future use.

At the mysql> prompt enter:
mysql> GRANT ALL ON wordpress.* TO wordpress@localhost IDENTIFIED BY '{use any password here greater than 8 characters}';
NOTE: Do not forget the single quotes that surround the password value.
NOTE: Upper and lower case are not important. Use all lowercase if you wish. Uppercase has been used to add some clarity to the MySQL command.

Output:
Query OK, 0 row affected (0.03 sec)

Creating User for Database

This will create a user wordpress, who can login to MySQL only from the local machine and will be identified by the password {password set above}.

Once complete an empty wordpress database is ready for use. This only be accessed by a registered MySQL user named wordpress, who has all rights on the wordpress database.

Since these steps are complete all that is left is to run the Wordpress installation PHP scripts within the Wordpress core downloaded earlier.

The next tutorial steps you through what you need to do on your local computer just prior actually going through with installing Wordpress on your local computer.

Do take a look.

OSV Newsletter


Receive HTML?

NOTE: To prevent subscription to the OSV newsletter, uncheck the checkbox above.
Guest Blog for OSV
Free Ebook Download
LinkShare_180x150
Artisteer - DNN Skin Generator
Tapestry Theme - A Tumblog-Style Theme for Wordpress