错误1045 (28000): Access denied for user ‘root‘@‘localhost‘?

系统是centos的LAMP集成包,mysql改过root密码

mysql -u root -p

输入密码后

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

mysqld_safe --skip-grant-tables &

进入后查看root的密码无误,google下大部分说是权限问题。
可现在mysql进不去,只能进safe模式,safe模式下用grant all privileges......提示

The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

那现在应该怎么赋予权限?

解决方案:

1、进入数据库:

mysql -u root -p

2、输入数据库密码

******

3、依次执行以下sql:

CREATE  USER  'root'@'%'  IDENTIFIED  BY  '你的密码';

GRANT  ALL  ON  *.*  TO  'root'@"%;

ALTER  USER  'root'@'%'  IDENTIFIED WITH   mysql_native_password  BY  '你的密码';

FLUSH PRIVILEGES;

解决方案2:

进入/etc/my.conf

在mysqld下添加skip-grant-tables

重启mysql

systemctl stop mysqld

systemctl start mysqld

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值