We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In case students have a different MySQL version or lost their root password consider the following recommendations:
brew remove mysql brew cleanup launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist rm ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist sudo rm -rf /usr/local/var/mysql
brew install mysql@5.7 brew link mysql@5.7 --force mysqld --initialize --explicit_defaults_for_timestamp mysql.server start # no sudo!
mysql.server restart --skip-grant-tables
UPDATE mysql.user SET authentication_string = PASSWORD('codeup'), password_expired = 'N' WHERE User = 'root' AND Host = 'localhost'; FLUSH PRIVILEGES;