Skip to content

Instantly share code, notes, and snippets.

@trevorgreenleaf
Created December 21, 2019 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trevorgreenleaf/330ee5ee066e0445f35a9305f1c05d44 to your computer and use it in GitHub Desktop.
Save trevorgreenleaf/330ee5ee066e0445f35a9305f1c05d44 to your computer and use it in GitHub Desktop.
Laravel Valet - MYSQL Password not working after fresh install
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