centos6.5 MySQL安全模式修改Root 密码

前端之家收集整理的这篇文章主要介绍了centos6.5 MySQL安全模式修改Root 密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
错误情况描述:

# MysqL -u root -p

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


解决办法:

第一步:关闭MysqL服务

#service MysqL stop

第二步:进入MysqL安全模式(safe),进行重启

#MysqLd_safe --skip-grant-tables

第三步:使用root 账户,进行无密码登入

#MysqL -u root

第四步:选择MysqL 数据库

#use MysqL

第五步:为root 用户修改密码,我修改的密码为('123456')

# update user set password=PASSWORD("123456") where User = 'root';

第六步:停止MysqL 服务

#/etc/init.d/MysqL stop

第七步:重新启动MysqL 服务

# /etc/init.d/MysqL start

第八步:使用root 用户进行登入

# MysqL -u root -p

原文链接:https://www.f2er.com/centos/381929.html

猜你在找的CentOS相关文章