Skip to content

Instantly share code, notes, and snippets.

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/320eb0f0cdd585dcf6c5654d875163f4 to your computer and use it in GitHub Desktop.
Save trevorgreenleaf/320eb0f0cdd585dcf6c5654d875163f4 to your computer and use it in GitHub Desktop.
Laravel Valet MySQL Connection Issue on Fresh install - caching_sha2_password
Issue with Mysql now makign passwords sha2 you need to fix by running these to commands
https://laracasts.com/discuss/channels/laravel/caching-sha2-password-error-when-running-php-artisan-migrate
mysql -uroot -p
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment