Home > Database > Mysql Tutorial > Mysql修改root密码简单方法

Mysql修改root密码简单方法

WBOY
Release: 2016-06-07 17:52:15
Original
1010 people have browsed it

修改mysql密码有很多种,像空密码的话使用phpmyadmin是不可以登录进入的,我们只能使用命令模式来操作。

使用Mysql update命令既可以修改root的老密码,也可设置root的密码为空,如果使用update命令更改root的密码,需要使用Mysql自带的加密函数PASSWORD(string),该函数对一个明文密码进行加密,是不能解密的,专门用于mysql.user(用户权限表)中设置密码的

使用update命令修改root密码的方法如下

 代码如下 复制代码

mysql> use mysql

Database changed

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

Query OK, 0 rows affected (0.00 sec)

Rows matched: 1  Changed: 0  Warnings: 0

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

这种情况是在知道密码的情况下载进行修改的

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template