php 连接mysql 错误排查一例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 连接mysql 错误排查一例相关的知识,希望对你有一定的参考价值。

php后台接不上mysql数据库,查看phpinfo,mysql驱动正常。

查看日志 

技术分享

发现配置正确,连接被拒,猜想可能是用户权限的问题

进入数据库查看用户和权限 

[[email protected] wezchina]# mysql -h 192.168.2.100 -P 3306 -uSbsBL6tnULzkI21 -p
Enter password: 
ERROR 1045 (28000): Access denied for user ‘user‘@‘MyCloudServer‘ (using password: YES)
[[email protected] wezchina]# mysql -u root -p

发现ip地址被解析为主机名并被拒
mysql> select user,host from mysql.user;
+-----------------+---------------+
| user            | host          |
+-----------------+---------------+
| SbsBL6tnULzkI21 | %             |
| root            | 127.0.0.1     |
| SbsBL6tnULzkI21 | 192.168.2.*   |
| root            | ::1           |
|                 | localhost     |
| SbsBL6tnULzkI21 | localhost     |
| root            | localhost     |
|                 | mycloudserver |
| SbsBL6tnULzkI21 | mycloudserver |
| root            | mycloudserver |
+-----------------+---------------+
10 rows in set (0.00 sec)

查看用户host,发现主机名是小写
在/etc/hosts文件添加以下解析
192.168.2.100 mycloudserver MyCloudServer
登录 正常


本文出自 “10850395” 博客,请务必保留此出处http://10860395.blog.51cto.com/10850395/1952668

以上是关于php 连接mysql 错误排查一例的主要内容,如果未能解决你的问题,请参考以下文章

php在连接mysql时为啥会包这样的错误?

一例 Go 编译器代码优化 bug 定位和修复解析

对“xxx”类型的已垃圾回收委托进行了回调。这可能会导致应用程序崩溃损坏和数据丢失。向非托管代码传递委托时,托管应用程序必须让这些委托保持活动状态,直到确信不会再次调用它们。 错误解决一例。(代码片段

阿里云yum工具和出站80端口不可用的问题排查一例

php分享二十八:mysql运行中的问题排查

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段