MySQL root password change

前端 未结 22 2823
被撕碎了的回忆
被撕碎了的回忆 2020-11-29 18:30

I have been trying to reset my MySQL root password. I have run the mysqld_safe --skip-grant-tables, updated the root password, and checked the user table to make sure it is

22条回答
  •  时光取名叫无心
    2020-11-29 18:50

    Tried the answer from @kta but didn't work for me.

    I am using MySQL 8.0

    This worked for me:

    mysql> SET PASSWORD FOR 'root'@'localhost' = 'yourpassword'

提交回复
热议问题