The *.* will grant root privilages to all databases , instead of identifying one.
Also please remember that when it says to input
GRANT ALL PRIVILEGES ON *.* TO Username@localhost IDENTIFIED BY 'Password' WITH GRANT OPTION;
That you have to replace Username with your username , and password with your password. So basically it would look like ..
GRANT ALL PRIVILEGES ON *.* TO Bob@localhost IDENTIFIED BY 'Smith123' WITH GRANT OPTION;
|