服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - WEB服务器 - apache启动报错:httpd: apr_sockaddr_info_get() failed

apache启动报错:httpd: apr_sockaddr_info_get() failed

2021-09-27 14:06服务器技术网 WEB服务器

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

重启apache:
service httpd restart
虽然重启成功,但却给出如下的提示信息:
httpd: apr_sockaddr_info_get() failed for hoteel
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

究其原因是因为在配置DNS的时候hostname hoteel造成的,重新hostname localhost就可以了。

附:网上找到的相关文章

1、在启动 httpd 时出现
Starting httpd: httpd: apr_sockaddr_info_get() failed for MYHOST
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName.
这个问题应该是没有在 /etc/httpd/conf/httpd.conf 中设定 ServerName 所以它会用主机上的名称来取代,首先会去找 /etc/hosts 中有没有主机的定义。
所以要解决这个问题可以设定 ServerName 或者在 /etc/hosts 中填入自己的主机名称 MYHOST,像这样:
>vi /etc/hosts
127.0.0.1 localhost.localdomain localhost MYHOST

2、在Linux下安装完Apache 2.2.6,启动HTTP服务报错
[root@linux http]# ./apachectl start
httpd: apr_sockaddr_info_get() failed for linux(在BSD上是apr_sockaddr_info_get() failed for freebsdla)
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

经分析发现是apache的conf目录下的配置文件httpd.conf中关于hostname设置和/etc/sysconfig/network中的HOSTNAME设置不统一导致的,修改成统一的主机名即可解决该问题。

注:/etc/sysconfig/network 默认主机名是:HOSTNAME=localhost.localdomain

PS:网上有这种办法,似乎是没用的,因为我认为apache在编译安装过程中会编译ARP的,因此下述操作有点多余。

apr 和apr-util包含在Apache httpd的发行源代码中,并且在绝大多数情况下使用都不会出现问题。当然,如果apr或apr-util的1.0或1.1版本已经安装在你的系统中了, 则必须将你的apr/apr-util升级到1.2版本,或者将httpd单独分开编译。要使用发行源代码中自带的apr/apr-util源代码进行安 装,你必须手动完成:

 

复制代码 代码如下:

# 编译和安装 apr 1.2
apr
./configure --prefix=/x/httpd/apr
make
make install
apr-util
./configure --prefix=/x/httpd/apr_util --with-apr=/x/httpd/apr
make
make install
apache
./configure --prefix=/x/httpd/apache2 \
--enable-so \
--enable-cgi \
--enable-rewrite \
--enable-mods-shared=all \
--with-apr=/x/httpd/apr \
--with-apr-util=/x/httpd/apr_util
LDFLAGS="-L/usr/lib64 -L/lib64"

 

本机正确设定说明 必须为同一的
[root@spring ~]# nl /etc/hosts
     1 # Do not remove the following line, or various programs
     2 # that require network functionality will fail.
     3 127.0.0.1 localhost.localdomain spring

[root@spring ~]# nl /etc/sysconfig/network
     1 NETWORKING=yes
     2 NETWORKING_IPV6=no
     3 HOSTNAME=spring
     4 #GATEWAY=192.168.8.1

[root@spring ~]# less /etc/httpd/conf/httpd.conf|grep ServerName
# ServerName gives the name and port that the server uses to identify itself.
#ServerName www.example.com:80
ServerName 127.0.0.1

延伸 · 阅读

精彩推荐
  • WEB服务器阿里云web服务器部署

    阿里云web服务器部署

    一、前言 近年来,云计算技术得到了广泛的应用和推广,其中 云服务器 成为了最受欢迎的云服务之一。在众多 云服务商 中, 阿里云 是最大的一家,其云...

    未知1902023-05-23
  • WEB服务器PHPStudy下如何为Apache安装SSL证书的方法步骤

    PHPStudy下如何为Apache安装SSL证书的方法步骤

    这篇文章主要介绍了PHPStudy下如何为Apache安装SSL证书的方法步骤,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    沃通CA3962019-06-29
  • WEB服务器2019常见六种web服务器软件介绍

    2019常见六种web服务器软件介绍

    WEB服务器也可以称为网站服务器,可以用来放置网站文件,供用户浏览。那么常见的WEB服务器软件有哪些呢? ①Apache Apache是世界使用排名的Web服务器软件。...

    服务器之家21692019-05-25
  • WEB服务器阿里云ossweb服务器

    阿里云ossweb服务器

    阿里云 OSS(Object Storage Service)是一个面向 Internet 的对象存储服务平台,提供海量、安全、低成本、高扩展的数据存储和访问服务。OSS 可以作为 Web 服务器...

    未知1362023-07-09
  • WEB服务器Apache启用GZIP压缩网页传输方法

    Apache启用GZIP压缩网页传输方法

    上一篇文章我们已经介绍了Apache启用GZIP压缩网页的方法,这里又发现了一篇好文章,特分享给大家...

    服务器技术网8162021-09-30
  • WEB服务器phpstudy在本地搭建多个网站的方法

    phpstudy在本地搭建多个网站的方法

    经常做网站的朋友,往往要在自已的电脑同时建立多个站点,而 phpstudy 这款软件就能很好的解决这个问题,大家看下图 点击上图中的 其它选项菜单 ,就会...

    服务器之家13882019-10-08
  • WEB服务器怎么在阿里云服务器上运行javaweb

    怎么在阿里云服务器上运行javaweb

    如何在阿里 云服务器 上运行Javaweb 作为一名开发人员,将Java Web应用程序部署在云服务器上是非常常见的任务。 阿里云 作为国内领先的云计算平台,提供...

    未知832023-06-20
  • WEB服务器阿里云服务器支不支持web

    阿里云服务器支不支持web

    阿里 云服务器 是一款由阿里巴巴集团提供的云计算服务,旨在为用户提供高性能、可靠的云端计算平台。作为一家全球领先的云计算服务提供商, 阿里云...

    未知1372023-07-06