赞
踩
MySQL登录时报错
提示拒绝访问 Access denied
出现access denied的原因有如下可能:
systemctl status mysqld
MySQL服务运行正常,若MySQL已经没有启动,重启MySQL服务器:systemctl restart mysqld
vim /etc/my.cnf文件
在[mysqld]后添加skip-grant-tables(登录时跳过权限检查)
重启MySQL服务:systemctl restart mysqld
重启完成 输入mysql –uroot –p;直接回车
登录过后修改root密码
ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassWord1.';
如果出现:ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
刷新 flush privileges;
再次修改:ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassWord1.';
退出:exit
再把my.cnf的skip-grant-tables删除或者注释掉
重启MySQL:systemctl restart mysqld
重新用新密码登录成功
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。