Invoke the MySQL Command Line Client by navigating to Start->Programs->MySQL->MySQL Server->MySQL Command Line Client. The command line client will prompt you for a password. This password should be admin.
Now copy and paste the following command into your MySQL Command Line Client.
grant all privileges on *.* to starthis@localhost identified by 'starthis' with grant option;
Press the Enter key and then copy-paste the following command.
commit;
Figure 4.1, “MySQL Command Line Client (Grant user rights)” shows the Command Line Client after the commands have been entered.
If you encounter any problems, please visit http://dev.mysql.com/doc/mysql/en/Access_denied.html.