php连接mysql 出现Warning: mysqli_connect()?
php7.2.8mysql8.0.12错误是Warning:mysqli_connect():Unexpectedserverresposewhiledoingcachi...
php 7.2.8 mysql 8.0.12
错误是
Warning: mysqli_connect(): Unexpected server respose while doing caching_sha2 auth: 109 in D:\............
Warning: mysqli_connect(): MySQL server has gone away in D:\...........
Warning: mysqli_connect(): (HY000/2006): MySQL server has gone away in D:\.............
Naviccat能连上
mysql -u root -p也能连上
改过
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
是什么问题啊 展开
错误是
Warning: mysqli_connect(): Unexpected server respose while doing caching_sha2 auth: 109 in D:\............
Warning: mysqli_connect(): MySQL server has gone away in D:\...........
Warning: mysqli_connect(): (HY000/2006): MySQL server has gone away in D:\.............
Naviccat能连上
mysql -u root -p也能连上
改过
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
是什么问题啊 展开
1个回答
展开全部
用mysql 客户端能连上吗?
1、ping服务器
2、用mysql命令行连接“mysql -u 用户名 -p -h 服务器地址”。比如 "mysql -u root -p -h 192.168.1.12"
注意mysql 8是比较新的客户端,不一定兼容php。建议用centos 或ubuntu预装的LAMP (linux+apache+mysql+php),那样配置工作量是最小的。
还有一种情况,就是 php和mysql不在同一个服务器上,这时候要修改mysql配置/etc/my.cnf,将地址绑定到0.0.0.0,而不是127.0.0.1,同时用 "grant" SQL 命令允许外网访问。比如 ` grant all on test.* to root@'%' identified by 'mypassword' `, 这样root用户就可以从别的主机访问mysql
1、ping服务器
2、用mysql命令行连接“mysql -u 用户名 -p -h 服务器地址”。比如 "mysql -u root -p -h 192.168.1.12"
注意mysql 8是比较新的客户端,不一定兼容php。建议用centos 或ubuntu预装的LAMP (linux+apache+mysql+php),那样配置工作量是最小的。
还有一种情况,就是 php和mysql不在同一个服务器上,这时候要修改mysql配置/etc/my.cnf,将地址绑定到0.0.0.0,而不是127.0.0.1,同时用 "grant" SQL 命令允许外网访问。比如 ` grant all on test.* to root@'%' identified by 'mypassword' `, 这样root用户就可以从别的主机访问mysql
追问
mysql -u root -p回车输入密码后能连上
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询