首先关闭正在运行的mysqld进程 执行mysqld_safe --skips-grant-tables & 双击enter 键进入命令行模式 执行 mysql linux 系统执行:update mysql.user set password = password('root') where user = 'root' and host = 'localhost'; mac 系统执行:update mysql.user set authentication_string=password('r…
1.修改mysql配置文件 vim /etc/my.cnf #编辑文件 找到[mysqld],在下面添加一行 skip-grant :wq #保存退出 service mysqld restart #重启MySQL服务 2.进入MySQL控制台 mysql -uroot -p #直接按回车,这时不需要输入root密码,或者随便输入一个密码都可以登陆. 3.修改root密码 update mysql.user set password=password('123456') where User…