在学习PHP的时候需要搭建WAMP环境,但是在安装好MySQL后,可以通过命令行进入MySQL管理:
但是通过Navicat确不能连接上,会显示错误
使用PHP的mysqli也连接不上;使用PHP中的mysqli连接的时候会报如下错误:
php的连接语句为:
<?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';#再重置一下密码
登录进去你的用户之后,执行上面的四条语句,为你的用户设置上密码后再次进行连接即可。