`
nowit
  • 浏览: 6464 次
  • 性别: Icon_minigender_1
  • 来自: 广州
最近访客 更多访客>>
社区版块
存档分类
最新评论

apache2: Could not reliably determine the server's fully qualified domain name,

阅读更多
$ sudo /etc/init.d/apache2 restart  
* Restarting web server apache2  
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName  
$ sudo /etc/init.d/apache2 restart
* Restarting web server apache2
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName

 

  解决步骤:


   为了解决这个问题,你需要编辑下面这个httpd.conf文件,打开它并根据如下操作进行编辑:

 

sudo gedit /etc/apache2/httpd.conf  

 

   默认的httpd.conf是个空文件,现在向里面加入如下内容:

 

ServerName localhost  

 

   保存并退出。

   最后重启服务器:

 

sudo /etc/init.d/apache2 restart  
 

 

 

 

分享到:
评论

相关推荐

    apache安装

    httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.2.116 for ServerName错误 在#ServerName www.example.com:80 添加 ServerName www.example.com:80

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

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

    Gerrit搭建及权限配置.docx

    Gerrit搭建及权限配置 Gerrit是一款基于Web的代码...需要处理常见错误,如重启Apache2时遇到apache2: could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for servername等。

    linux下安装apache

    重启 Apache 后,可能会弹出警告:AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.0.64. Set the 'ServerName' directive globally to suppress this ...

    lamp安装.doc

    如果在重启Apache时遇到“Could not reliably determine the server's fully qualified domain name”的警告,可以在`/etc/apache2/apache2.conf`文件末尾添加: ``` ServerName 127.0.0.1 ``` 6. 重启Apache服务:...

    lamp搭建(apache2.2+mysql+php5.3)

    注意,在启动Apache时,如果出现“Could not reliably determine the server's fully qualified domain name”警告,可以在Apache配置文件(如 `/usr/local/apache/conf/httpd.conf`)中添加或修改ServerName配置,...

    CentOS 6.4安装配置LAMP服务器(Apache+PHP5+MySQL)

    若启动时遇到“Could not reliably determine the server's fully qualified domain name”错误,需编辑`/etc/httpd/conf/httpd.conf`,将`ServerName www.example.com:80`改为`ServerName localhost:80`或你的实际...

    Centos 下Lamp的配置

    httpd: Could not reliably determine the server's fully qualified domain name, using ::1 for ServerName ``` 可以通过修改`httpd.conf`文件来解决该问题: ```bash vi /etc/httpd/conf/httpd.conf ``` 找到如下...

    UbuntuApache配置以及cgi配置.pdf

    当执行重启操作时可能会遇到 “Could not reliably determine the server’s fully qualified domain name” 错误提示。这通常是因为 ServerName 未正确配置导致。解决方法是在 `/etc/apache2/apache2.conf` 文件中...

    CentOS6.2安装配置LAMP服务器(Apache+PHP5+MySQL).pdf

    如果出现“Could not reliably determine the server's fully qualified domain name”错误,需要编辑`/etc/httpd/conf/httpd.conf`文件,将`ServerName`行修改为实际的域名或IP地址,并设为开机启动。 然后,我们...

    ubuntu下php环境的搭建

    如果遇到 Apache 启动时提示 `Could not reliably determine the server's fully qualified domain name` 的错误,可以通过以下步骤解决: 1. 创建一个包含 ServerName 的配置文件: ```bash echo "ServerName ...

    服务器安装lamp教程

    解决启动时可能出现的`Could not reliably determine the server's fully qualified domain name`错误,编辑httpd.conf配置文件: ```bash vi /etc/httpd/conf/httpd.conf ``` 将`#ServerName www.example.com:80`改...

    redmine在centos下配置文档

    sockaddr_info_get() failed”和“Could not reliably determine the server's fully qualified domain name”的错误,可以通过编辑 /etc/hosts、/etc/sysconfig/network 和 /usr/local/apache/conf/httpd.conf 文件...

    apache+tomcat+memcached 全配置

    - 在启动 Apache 时可能会遇到提示 “Could not reliably determine the server's fully qualified domain name”,这通常是因为没有正确设置 `ServerName`。 - 在 Apache 的配置文件中添加以下内容: ```apache ...

    查看进程端口

    当遇到类似“Could not reliably determine the server's fully qualified domain name”这样的错误时,通常是因为Apache服务器在启动时无法确定其完全限定域名(FQDN),这可能会影响到HTTPS证书的绑定或其他基于域名...

    LAMP centos安装流程

    若出现“Could not reliably determine the server's fully qualified domain name”错误,需要修改`/etc/httpd/conf/httpd.conf`文件中的`ServerName`配置: ```bash # 找到 ServerName 行 ServerName localhost #...

    LAMP搭建的方法与注意事项

    如果出现"Could not reliably determine the server's fully qualified domain name"错误,编辑`/usr/local/apache/conf/httpd.conf`,将ServerName设置为127.0.0.1:80,并重启Apache。 接下来是MySQL的安装。MySQL...

Global site tag (gtag.js) - Google Analytics