MySQL Community Server 5.7安装后,Navicat连接不上解决方法

在学习PHP的时候需要搭建WAMP环境,但是在安装好MySQL后,可以通过命令行进入MySQL管理:
MySQL Community Server 5.7安装后,Navicat连接不上解决方法_第1张图片
但是通过Navicat确不能连接上,会显示错误
MySQL Community Server 5.7安装后,Navicat连接不上解决方法_第2张图片
使用PHP的mysqli也连接不上;使用PHP中的mysqli连接的时候会报如下错误:
tw.png
php的连接语句为:

 
$mysqli = new mysqli('localhost','test1','');

这个应该是因为MySQL没有设置密码的原因;
下面我们为该用户设置一个密码:

alter user 'root'@'localhost' identified by 'password' password expire never;#更改加密规则

alter user 'root'@'localhost' identified with mysql_native_password by 'password';#更新一下用户密码

flush privileges;#刷新权限

alter  user 'root'@'localhost' identified by 'root';#再重置一下密码

登录进去你的用户之后,执行上面的四条语句,为你的用户设置上密码后再次进行连接即可。

你可能感兴趣的:(MySQL)