Skip to content

Instantly share code, notes, and snippets.

@lparolari
Last active November 8, 2019 16:33
Show Gist options
  • Save lparolari/7221946f82e81823dfe722748501a1a4 to your computer and use it in GitHub Desktop.
Save lparolari/7221946f82e81823dfe722748501a1a4 to your computer and use it in GitHub Desktop.

Laradock troubleshooting

phpmyadmin login not works

Solved by changing the authentication method of user default to mysql native password.

Go to mysql bash docker-compose exec mysql bash
login using root mysql -u root -p password is root.
then issue following mysql command ALTER USER 'default' IDENTIFIED WITH mysql_native_password BY 'secret';

Now in phpmyadmin login page input server as mysql user default and password secret.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment