linux安裝MySQL出現ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

lm_y發表於2017-09-09

linux安裝mysql出現這個錯誤不用怕,

解決辦法: 重新設定root使用者密碼

# service 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';  把newpassword改成自己的密碼
mysql> FLUSH PRIVILEGES; 
mysql> quit 
# service mysql restart 
# mysql -uroot -p 
Enter password: <輸入新設的密碼newpassword> 
mysql> 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

就可以使用了

相關文章