Home >Database >Mysql Tutorial >MySQL数据库修改root密码的简单方法

MySQL数据库修改root密码的简单方法

WBOY
WBOYOriginal
2016-06-07 16:21:381253browse

先得进入MySQL命令行,输入以下语句回车即可。 set password for 'root'@'localhost'=password('newpasswd'); 注意,此方法可行的前提是你知道你的密码,并且可以进入MySQL命令行。 如果你忘记了密码,那就得使用网上的那些复杂的方式修改密码了。

   先得进入MySQL命令行,输入以下语句回车即可。

  set password for 'root'@'localhost'=password('newpasswd');

  注意,此方法可行的前提是你知道你的密码,,并且可以进入MySQL命令行。

  如果你忘记了密码,那就得使用网上的那些复杂的方式修改密码了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn