Phpmyadmin problem in login

Asked

Viewed 473 times

-2

I changed my pass from phpmyadmin and unintentionally added a space at the end. Now I can’t get into the phpmyadmin.

Is there any special character to represent the space?

  • 1

    Sign in as root users and change phpmyadmin user password

2 answers

1

Follow this step by step on your terminal that will solve your problem:

1°: Execute with sudo mysql

sudo mysql

2°: Then change the root password

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'digitesuasenha';

3°: After all privileges

FLUSH PRIVILEGES;

Then try to log in to phpmyadmin

0

You can enter the password manually with the space in the configuration file 'my.cnf' inside double quotes, so you can identify when there is the start of the password and when it ends, so you will have access to phpmyadmin again and you can exchange it after logging in.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.