


Yes, u may add a Super user Try out this....
First, stop the mysql service by: /etc/init.d/mysql stop
Now, start mysql in safe mode in background.....
/usr/bin/mysqld_safe --skip-grant-tables &
Now pass the command as: mysql --user=root mysql
From here u may set the new one on mysql prompt....
mysql> update user set Password=PASSWORD WHERE User='root';
Again, pass the command as: flush privileges;
then type as: exit



