I\'m new to the whole Mac experience. I recently installed MySQL and it seems I have to reset the password after install. It won\'t let me do anything else.
Now I al
When you use SET PASSWORD = PASSWORD('your_new_password'); it may crash for it
SET PASSWORD = PASSWORD('your_new_password');
(ERROR 1819 (HY000): Your password does not satisfy the current policy requirements)
.you can use SET GLOBAL validate_password_policy=LOW; to slove it.
SET GLOBAL validate_password_policy=LOW;