Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Ubuntu 10.10 and I installed phpmyadmin from synaptic package manager.

But i did not put any password on mysql root user and phpmyadmin user.

Later, i tried to log into phpmyadmin with user root and no password it get error

Login without a password is forbidden
by configuration (see AllowNoPassword)

And chage password in mysql is not working, I tried to update password using password('pma') in passsword field in user table of mysql database, but still I am not being able to log in from console.

How to change mysql password, and where is this phpmyadmin configuration file.

share|improve this question
1  
Try running a FLUSH PRIVILEGES inside MySql. – The Scrum Meister Mar 6 '11 at 5:54

1 Answer

up vote 2 down vote accepted

I'm not sure about the larger problem, but phpMyAdmin's configuration file is stored in phpMyAdmin/config.inc.php. The username and password can be found on line 85:

85  $cfg['Servers'][$i]['user']          = 'root';      // MySQL user
86  $cfg['Servers'][$i]['password']      = 'root';      // MySQL password (only needed
87                                                      // with 'config' auth_type)
share|improve this answer
thanks that was helpful, but creating a user with all privilege solved my problem. If you update your answer, i will accept it. – experimentX Mar 6 '11 at 6:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.