首页 > 数据库 > MySQL > 正文

mysql ERROR 1045 修改密码二种方法

2024-07-24 12:39:09
字体:
来源:转载
供稿:网友

出现1045是用户名与密码对不上号,也就是忘了密码,下面我们提供二种关于修改密码的解决办法,有需要的朋友可以参考一下.

直接使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码,代码如下:

  1. # mysql -udebian-sys-maint -p  
  2. Enter password: <输入[client]节的密码>  
  3. mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’;  
  4. mysql> FLUSH PRIVILEGES;  
  5. mysql> quit  
  6. # mysql -uroot -p  
  7. Enter password: <输入新设的密码newpassword>  
  8. mysql> 

方法二,代码如下:

  1. # /etc/init.d/mysql stop  
  2. # mysqld_safe --user=mysql --skip-grant-tables --skip-networking &  
  3. # mysql -u root mysql  
  4. mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’;  
  5. mysql> FLUSH PRIVILEGES;  
  6. mysql> quit  
  7. # /etc/init.d/mysql restart  
  8. # mysql -uroot -p  
  9. Enter password: <输入新设的密码newpassword>  
  10. mysql>  --Vevb.com

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表