It looks like you have the same issue I had. Depending on your version of WP that you installed, one installs almost seemlessly, another requires a bit more MySQL work. In the latter case, you have to add the wordpress database and the user to MySQL directly.
So, in the wp-config.php file, you have
———————–
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘wordpress’);
/** MySQL database username */
define(‘DB_USER’, ‘wordpress’);
/** MySQL database password */
define(‘DB_PASSWORD’, ‘shhhhh’);
(change this to suit your needs)
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);
———————————————–
Then, as root, execute ‘mysql’
You should be presented with a prompt of
mysql>
At that point, execute the following lines
mysql> create database ‘wordpress’;
mysql> create user ‘wordpress’@’localhost’ identified by ‘shhh’;
mysql> grant all on wordpress.* to ‘wordpress’@’%’ ;
Again, I suggest using a password of your own creation, as long as it matches above. Once you get it up and running, change the priviliges to match your needs. You can restrict it until it quits then back off to get it working again.
Good luck and good blogging ??
Otto