Home  >  Article  >  Database  >  Mysql安装后修改root密码

Mysql安装后修改root密码

WBOY
WBOYOriginal
2016-06-07 15:46:231053browse

今天使用了绿色版本的mysql,在登陆时候root密码是空的,在网上找了几种解决方法,个人感觉两种方法是最方便快捷的: 第一种:使用mysqladmin命令来修改,-----------mysqladmin -u root -p password newpassword 然后需要你输入root密码,为空直接回车即可

今天使用了绿色版本的mysql,在登陆时候root密码是空的,在网上找了几种解决方法,个人感觉两种方法是最方便快捷的:


第一种:使用mysqladmin命令来修改,-----------mysqladmin -u root -p password newpassword

然后需要你输入root密码,为空直接回车即可。


第二种:首先进入mysql数据库,依次输入一下命令:

mysql>use mysql

mysql>update user set password=PASSWORD("newpassword") where user='root';

然后退出重新登陆即可。


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