Mysql mysql的root密码重置 编辑mysql主配置文件 vim /etc/my.cnf 添加..grant参数 [mysqld] skip-grant 重启mysql服务 service mysqld restart 进入数据库不用授权 更新root用户密码 /usr/local/mysql/bin/mysql -uroot use mysql; update user set password=password('mysql1234') where user='root'; flu…