database_name_here

Writing “wordpress” as the database in the config file won’t get you anywhere.

Although the quick installation will set up your database tables and fields, it expects you to have already created the database in MySQL first!

Here is what it looks like in Mac OSX:

Startup MySQL first:

Then, get into the terminal and make the empty database:
 
Gary-Garchars-Computer:~ GG5$ mysql -u root -p
Enter password:


mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
+--------------------+
2 rows in set (0.00 sec)


mysql> create database wordpress;
mysql> show databases;


+--------------------+
| Database |
+--------------------+
| information_schema |
| test |
| wordpress |
+--------------------+
3 rows in set (0.01 sec)

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s


Follow

Get every new post delivered to your Inbox.