Hi kaushik,
By default the mysql username will be root.So you can create new username and password.
on your command prompt and at the mysql\bin directory type the following:
c:\mysql\bin>mysql --user=root mysql
this will log you into mysql as the root user, which is the default user, then type the following:
mysql> GRANT ALL PRIVILEGES ON *.* TO new_username@localhost
-> IDENTIFIED BY 'some_pass' WITH GRANT OPTION;
this will add the new user and setup the privileges of that user.
Jul 26, 2010