file_get_contents():php_network_getaddresses:getaddrinfo失败

前端之家收集整理的这篇文章主要介绍了file_get_contents():php_network_getaddresses:getaddrinfo失败前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用cron作业将一些值从一台服务器更新到另一台服务器.我使用file_get_contents().

奇怪的是偶尔会失败.一分钟它工作,另一分钟它将无法工作.
我收到这两个错误

PHP Warning: file_get_contents(): PHP_network_getaddresses: getaddrinfo Failed: Name or service not known

PHP Warning: file_get_contents(): Failed to open stream: PHP_network_getaddresses: getaddrinfo Failed: Name or service not known

和:

PHP Warning: file_get_contents(): PHP_network_getaddresses: getaddrinfo Failed: No address associated with hostname

PHP Warning: file_get_contents(): Failed to open stream: PHP_network_getaddresses: getaddrinfo Failed: No address associated with hostname

我已登录到遇到此问题的服务器.使用ping或traceroute工作正常,所以我排除了DNS问题.我还添加了谷歌DNS名称服务器以确保.使用完全相同的代码的第三个服务器没有这个问题,因此它看起来是“调用”端的问题,而不是“响应”端.在这种情况下,不能使用IP替换主机名.

有谁知道如何解决这个问题?

在我的例子中,问题是Apache在启动时从/etc/resolv.conf获取DNS条目.当我启动Apache时,网络尚未设置.重新启动Apache(配置网络后)解决了我的问题.

我在http://diogomelo.net/blog/16/Warning-file_get_contents-php_network_getaddresses-getaddrinfo-failed-No-address-associated-with-hostname博客上详细解释了这个案例

原文链接:https://www.f2er.com/php/137539.html

猜你在找的PHP相关文章