编辑器加载中...Ubuntu8.04刚装了mysql sudo apt-get install mysql 安装成功了,安装最后要求输入了密码,也输入了,OK mysql -uroot -p 输入设置的密码 竟然报错了! ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YSE) 问朋友,他说初始密码是空的,可我命名设置了密码的阿。 密码留空 还是错误! ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) 于是重改密码! # /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-12-28
  • 2021-08-01
  • 2022-02-18
  • 2021-09-05
  • 2021-12-25
  • 2021-07-17
猜你喜欢
  • 2021-10-25
  • 2021-09-15
  • 2022-02-14
  • 2022-12-23
  • 2021-12-14
  • 2021-12-20
  • 2021-07-16
相关资源
相似解决方案