ubuntu 如何恢复 MYSQL 密码
我已经表演过的是:
sudo /etc/init.d/mysql stop
/usr/sbin/mysqld --skip-grant-tables --skip-networking &
在此之后,我得到:
[Warning] Using unique option prefix key_buffer instead of
key_buffer_size is deprecated and will be removed in a future release.
Please use the full name instead.
150929 11:48:31[Note] /usr/sbin/mysqld (mysqld ....)starting as
process 3633 ...
它没有进一步处理。
该怎么办?
接下来的步骤可能是:
在终端:
mysql
在 mysql 外壳中:
use mysql; select user,password,host from user; update user set password=password("newpassword") where user=root; select user,password,host from user; flush tables; FLUSH PRIVILEGES; quit
在终端:
kill -15 `pgrep -f 'skip-grant-tables' service mysql start mysql -u root -p
相关文章推荐:
- ubuntu-双启动–Ubuntu16.04不会与Windows7一起安装,但14.04会
- ubuntu-软件推荐–如何在Ubuntu中编辑文件的二进制或十六进制数据?
- ubuntu-使用Python处理打开的文件(mime类型)_ubuntu_帮酷
- ubuntu-lubuntu–.desktop扩展的作用
- ubuntu-当系统挂起时,后来没有醒来就重新启动
- ubuntu-如何在UbuntuGNOME16.04上激活LibreOfficeWriter中的滚动条?
- ubuntu-grub2–Grub引导加载程序不会安装到Raid驱动器_ubuntu_
- ubuntu-nvidia–分辨率检测后监视器闪烁
- ubuntu-系统安装–启动不会在我的笔记本电脑上进行,但在其他机器上进行
- ubuntu-kill-9命令不起作用
赞 (0)