一.停止mysqld进程 systemctl stop mysqld.service 二.修改/etc/my.cnf(在mysqld选项添加skip-grant-tables),设置免密码登录: vim /etc/my.cnf 三.登录mysql并修改root密码为空: update mysql.user set authentication_string='' where User='root'; 四.退出mysql,去掉/etc/my.cnf上的skip-grant-tables,上述步骤二…