Answers for "mysql reset root password macos"

SQL
5

reset mysql root password mac

Make sure you have Stopped MySQL first (above).
Run the server in safe mode with privilege bypass: sudo mysqld_safe --skip-grant-tables
mysql -u root
UPDATE mysql.user SET authentication_string=null WHERE User='root';
FLUSH PRIVILEGES;
exit;
Then
mysql -u root
ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'yourpasswd';
Posted by: Guest on May-26-2020

Code answers related to "mysql reset root password macos"

Code answers related to "SQL"

Browse Popular Code Answers by Language