大家好,我是考100分的小小码 ,祝大家学习进步,加薪顺利呀。今天说一说mariadb修改root密码_ubuntu忘记root密码,希望您对编程的造诣更进一步.
linux中mysql忘记root密码如何登陆
1.关闭mysql服务
systemctl stop mysqld netstat -tunlp|grep mysqld
代码100分
2.进入配置文件添加一条命令
代码100分[mysqld] skip-grant-tables #以安全模式启动
3.重新启动服务
systemctl start mysqld
4.无密码模式登陆
mysql -uroot
5. 5.7版本以后password字段没有,更改为authentication_string
show databases; use mysql; show tables; desc user; update mysql.user set authentication_string=password(‘xxx‘) where user=‘root‘ ; flush privileges;
6.修改完毕后将配置文件中添加的语句注释掉,并重启服务
代码100分vim /etc/my.cnf
#skip-grant-tables systemctl restart mysqld
7.新密码重新登陆后出现问题
show databases;
ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
#意思是必须使用alter user命令重新设置密码
mysql> alter user [email protected] identified by ‘XXXXXX‘; flush privileges;
MySQL系列-修改root密码
原文地址:https://www.cnblogs.com/gzsws/p/13414124.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/6931.html