MySql Databse Password setup
In Red-hat enterprise Linux / CentOS Linux There is no Default Password set for MySQL Database server.
For Setting up password first time.
If you have never set a root password
$ mysqladmin -u root password NEWPASSWORD
if you want to change a root password
$ mysqladmin -u root -p'oldpassword' password NEWPASSWORD