I can not access PHPMyAdmin - error # 1045

1

I can no longer access PHPMyAdmin. Until yesterday was normal, I did not change anything and today when I enter it is like this:

(It is not access to a specific DB, it is for the general DB where the listing of all banks appears).

Use WampServer. I have already researched, but all the solutions I found ask to reconfigure the password, but since I can not access the panel, I can not do this ... Is there any solution or just reinstalling and losing everything?

    
asked by anonymous 22.01.2018 / 23:36

1 answer

0

Hello, apparently it is the password that he is rejecting. You can reset the password by accessing the files "at hand."

If you use Windows, open the command prompt and navigate to the BIN folder inside the Mysql folder, usually the address is C: \ xampp \ myslq \ bin. Inside the folder, type:

mysql -u root mysql

SET PASSWORD FOR root@localhost=PASSWORD('NOVASENHA');

If you are using Linux, open the terminal and type:

mysqladmin -u root password 'NOVASENHA'
    
23.01.2018 / 00:00