sh 在Ubuntu Linux上设置/更改/重置MySQL root密码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 在Ubuntu Linux上设置/更改/重置MySQL root密码相关的知识,希望对你有一定的参考价值。

# Stop the MySQL Server.
sudo /etc/init.d/mysql stop

# Start the mysqld configuration.
sudo mysqld --skip-grant-tables &

# Login to MySQL as root.
mysql -u root mysql

# Replace YOURNEWPASSWORD with your new password!
UPDATE user SET Password=PASSWORD('YOURNEWPASSWORD') WHERE User='root'; FLUSH PRIVILEGES; exit;

# REF: http://ubuntu.flowconsult.at/en/mysql-set-change-reset-root-password/

以上是关于sh 在Ubuntu Linux上设置/更改/重置MySQL root密码的主要内容,如果未能解决你的问题,请参考以下文章

sh 在Ubuntu上更改MySQL密码

Ubuntu 设置程序双击启动和sh脚本开机自启动的另一种方法

ubuntu上如何简单快捷地安装spf13-vim?

ubuntu上如何简单快捷地安装spf13-vim?

MySQL:如何重置或更改 MySQL root 密码?

sh 在Ubuntu linux上更新phpstorm。