carlosfgti/docker-lemp-php7-phpmyadmin

phpmyadmin authentication

Closed this issue · 1 comments

Related to #1

To get to the phpmyadmin ui use the link http://localhost:8080/index.php

Upon authentication if you see the error:
SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client

Then do:
docker exec -it mysql_eti bash

and

mysql -u root -p
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'root';

I found this solution on stackoverflow

pretty useful :) Thank you