ubuntu14.04忘记了mysql的用户(root)的密码。接下来:
1) 停止mysql服务
$ sudo stop mysql
2) 启动mysqld_safe
$ sudo /usr/bin/mysqld_safe --skip-grant-tables&
$ mysql --user=root mysql
mysql> update user set Password=PASSWORD('新密码') where user='root';
mysql> flush privileges;
mysql> exit
3) 杀死mysqld_safe进程
$ ps -ef|grep mysqld_safe
$ sudo kill -9 pid_of_mysqld_safe
4) 重启mysql
$ sudo start mysql
5) 登录mysql
$ mysql -u root -p新密码 -h localhost
mariadb和mysql忘记密码怎么办:http://www.linuxdiyf.com/linux/14244.html
Linux-mysql忘记root密码:http://www.linuxdiyf.com/linux/13838.html
Ubuntu下MySQL忘记root密码重置:http://www.linuxdiyf.com/linux/13666.html
Ubuntu15.04下MySQL5.6安装过程:http://www.linuxdiyf.com/linux/13250.html
关于MySQL密码你应该知道的那些事:http://www.linuxdiyf.com/linux/12965.html