I followed direction accuratly, but I can't get past configuring MySQL. What am I doing wrong?
C:\mysql\bin>mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 4.0.15-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> create database netjuke; GRANT ALL ON netjuke.* TO mp3@localhost
ED BY "mp3";
Query OK, 1 row affected (0.00 sec)
ERROR 1044: Access denied for user: '@localhost' to database 'netjuke'
mysql> GRANT ALL ON netjuke.* TO mp3@localhost IDENTIFIED BY "mp3";
ERROR 1044: Access denied for user: '@localhost' to database 'netjuke'
C:\mysql\bin>mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 4.0.15-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> create database netjuke; GRANT ALL ON netjuke.* TO mp3@localhost
ED BY "mp3";
Query OK, 1 row affected (0.00 sec)
ERROR 1044: Access denied for user: '@localhost' to database 'netjuke'
mysql> GRANT ALL ON netjuke.* TO mp3@localhost IDENTIFIED BY "mp3";
ERROR 1044: Access denied for user: '@localhost' to database 'netjuke'