Created
December 21, 2019 01:45
-
-
Save trevorgreenleaf/330ee5ee066e0445f35a9305f1c05d44 to your computer and use it in GitHub Desktop.
Laravel Valet - MYSQL Password not working after fresh install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Im using MacOS Catalina. and beta version of Sequel Pro | |
// | |
Was getting error MySQL said: Authentication plugin 'caching_sha2_password | |
to fix this I reset the password on mysql and it seemed to do the trick | |
mysql -u root -p | |
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '[PASSWORD]'; where [PASSWORD] is a password of your choosing. | |
// | |
brew services restart mysql | |
SRC: | |
https://stackoverflow.com/questions/51179516/sequel-pro-and-mysql-connection-failed | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment