在windows下:打开命令行窗口,停止mysql服务: net stop mysql 启动mysql,执行: mysqld -nt --skip-grant-tables 另外打开一个命令行窗口,执行mysql >use mysql >update user set password=password("new_pass") where user="root"; >flush privileges; >exit 用Ctrl+Alt+Del,…
忘记MySQL root密码解决方法,基于Ubuntu 14.10 忘了mysql密码,从网上找到的解决方案记录在这里. 编辑mysql的配置文件/etc/mysql/my.cnf,在[mysqld]段下加入一行"skip-grant-tables". 重启mysql服务 abbuggy@abbuggy-ubuntu:~$ sudo service mysql restart mysql stop/waiting mysql start/running, process 18669 a…