Just for future notation if you are ever working on a mySQL database server in Fedora (linux) and your want to reset the root password these are the steps to follow:
How to Reset a MySQL Password in 5+1 Easy Steps
- Stop the mysqld daemon process.( /etc/init.d/mysqld stop)
- Start the mysqld daemon process with the –skip-grant-tables option. (/etc/init.d/mysqld start –skip-grant-tables)
- Start the mysql client with the -u root option.( mysql -u root)
- Execute the UPDATE mysql.user SET Password=PASSWORD(‘newp@ssw0rd’) WHERE User=’root’;
- Execute the FLUSH PRIVILEGES; command.
- Exit mySQL server by typing quit
Reference: Tech-FAQ

