Created
August 14, 2020 11:29
-
-
Save stefanbauer/9d00400dcb6d37147948a61cb7dd599c to your computer and use it in GitHub Desktop.
Fix MySQL 5.7 ERROR 1524 (HY000): Plugin ‘auth_socket’ is not loaded in macOS Big Sur
This file contains 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
# If you don't use brew services, install it | |
# https://github.com/Homebrew/homebrew-services | |
# Stop MySQL | |
brew services stop [email protected] | |
# Start MySQL in safe mode | |
mysqld_safe --skip-grant-tables & | |
# Login to MySQL | |
mysql -u root | |
# Use "mysql" table | |
use mysql; | |
# Update the authentication | |
update user set authentication_string=PASSWORD('') where User='root'; | |
update user set plugin='mysql_native_password' where User='root'; | |
# Flush the privilges and quit | |
flush privileges; | |
quit; | |
# Restart MySQL | |
/usr/local/opt/[email protected]/bin/mysql.server stop | |
brew services start [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment