使用WAMP集成环境时,安装成功后,mysql数据库的root用户名的密码默认为空
1:进入mysql控制台
输入密码,默认为空
2:root的信息保存在mysql数据库中的user表中
输入如下命令
use mysql
update user set password = password('123456') where user = 'root';
5.7.*版本(password字段改成authentication_string
)
update
user
set
authentication_string=
password
(
'123456'
)
where
user
=
'root'
and
Host =
'localhost'
;
flush privileges;