MySQL 警告 IP 地址‘192.168.xx.xxx’无法解析:主机未知

MySQL 警告 IP 地址‘192.168.xx.xxx’无法解析:主机未知

我有一个设备每分钟都会向我的服务器发送数据。(没有运行 DNS)。当我启动设备时,我收到一条警告消息。

[Warning] IP address '192.168.xx.xxx' could not be resolved: the host is not known.

然后每一分钟我都会在我的 mysql 日志文件中收到以下警告。(当然每分钟都会有新的连接数。这是一个样本)

2019-05-15 11:12:00 840 [Warning] Aborted connection 840 to db: 'unconnected' user: 'root' host: '192.168.xx.xx' (Got an error reading communication packets).

尽管有这个警告,但我的设备仍然每分钟向 mysql 服务器发送数据。

我不知道为什么这个警告显示 db: 'unconnected'?有什么建议吗?(我使用的是静态 IP)

答案1

以下是此类错误的原因。

1. The client connected successfully but terminated improperly (and may relate to not closing the connection properly)
2. The client slept for longer than the defined wait_timeout or interactive_timeout seconds (which ends up causing the connection to sleep for wait_timeout seconds and then the connection gets forcibly closed by the MySQL server)
3. The client terminated abnormally or exceeded the max_allowed_packet for queries

希望这会有所帮助。

相关内容