1. 程式人生 > >mysql之windows忘記密碼

mysql之windows忘記密碼

nbsp leg word -- roo host 服務 and grant

步驟:

1. 關閉mysql服務
2. mysqld --skip-grant-tables;
3. 新cmd,執行mysql
4. use mysql;
5. update mysql.user authentication_string=password(123456) where user=root and host=localhost; // set password=password(‘123456‘)在跳過權限下無效
6. flush privileges;

mysql之windows忘記密碼