Resetting ROOT password in MySQL 5.6

前端 未结 9 1907
名媛妹妹
名媛妹妹 2020-11-27 17:24

I have been following these instructions for resetting root password for local installation of MySQL 5.6 on Windows 7 laptop.

I stopped

9条回答
  •  迷失自我
    2020-11-27 17:53

    For MySQL 5.6 on Windows I had to run this statement to make it work.

    UPDATE mysql.user
    SET Password=PASSWORD('NEW PASSWORD'), 
    authentication_String=PASSWORD('NEW PASSWORD')
    WHERE User='root';
    

提交回复
热议问题