Reset MySQL root password using ALTER USER statement after install on Mac

后端 未结 19 2227
慢半拍i
慢半拍i 2020-11-29 14:21

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

19条回答
  •  庸人自扰
    2020-11-29 15:13

    On MySQL 5.7.x you need to switch to native password to be able to change it, like:

    ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'test';
    

提交回复
热议问题