Linux下Mysql修改密码 重启mysql服务
如果忘记mysql的密码
修改配置文件跳过密码直接登录
在[mysqld]下面添加
vim /etc/my.cnf
skip-grant-tablses
重启mysql服务
service mysqld restart
/etc/rc.d/init.d/mysqld restart
登录mysql -uroot 回车
use mysql;
update user set password=password(“147258”) where user=’root’;
flush privileges;
exit;
再次修改vim /etc/my.cnf把skip-grant-tablses 删除或者添加注释注释以#开头
根据mysql数据库的版本不同,然后修改密码的命令也是不同的例如我喜欢的5.7.29这个版本的数据库就没有了 password这个字段 换成了authentication_string字段
所以命令如下所示
update user set authentication_string=password(“qwerqwer”) where user=’root’;
最后重启服务生效!!!!
本文来自博客园,作者:后山人,转载请注明原文链接:https://www.cnblogs.com/zhuhuibiao/p/14467586.html
经营好自己的现在,等待未来向我飞奔而来。