1. 修改配置文件,无需密码登录
sudo vim /etc/my.cnf
在最底下添加一行:
skip-grant-tables
重启mysql
systemctl restart mysqld
2. 登录mysql,修改密码
输入mysql直接登录
执行修改密码命令
use mysql; update mysql.user set authentication_string=password('root_password') where user='root';flush
privileges
;
3. 删除或注释第1步中添加的命令
重启mysql
systemctl restart mysqld
4. 重新登录即可
标签:ysql,登录,Linux,密码,systemctl,mysqld,mysql From: https://www.cnblogs.com/geoffrey-peng/p/17145224.html