MySQL ERROR 1045 (28000): Access denied for user 'root'@'localhost'解决:

# /etc/init.d/mysql stop

# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

# mysql -u root mysql

mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';

mysql> FLUSH PRIVILEGES;

mysql> quit

 

# /etc/init.d/mysqld restart

# mysql -uroot -p

Enter password:

 

mysql>

相关文章:

  • 2021-09-05
  • 2022-12-23
  • 2021-12-14
  • 2021-12-20
  • 2021-07-16
  • 2021-12-04
  • 2022-12-23
  • 2021-08-01
猜你喜欢
  • 2021-08-16
  • 2022-02-14
  • 2022-12-23
  • 2021-10-25
  • 2021-09-15
  • 2021-12-16
  • 2022-12-23
相关资源
相似解决方案