After power failure mysql refuses root login: Access denied for user 'root'@'' (using password: YES)
Try to log in WITHOUT a password: mysql -u root
If successfull, check users table content:
> use mysql;
> select * from user;
All passwords are probably empty - means login without password is poossible now ;-(
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'new_password' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON *.* TO 'root'@'machine_name' IDENTIFIED BY 'new_password' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Poslední komentáře
15 týdnů 12 hod zpět
17 týdnů 3 dny zpět
18 týdnů 1 den zpět
18 týdnů 1 den zpět
18 týdnů 1 den zpět
19 týdnů 1 den zpět
20 týdnů 4 dny zpět
31 týdnů 1 den zpět
31 týdnů 6 dnů zpět
31 týdnů 6 dnů zpět