zoukankan      html  css  js  c++  java
  • Apache重启报警,不存在虚拟主机目录(httpd.conf打开了一些扩展)

    Apache重启时报警:

    AH00112: Warning: DocumentRoot [/usr/local/apache/docs/dummy-host.example.com] does not exist

    AH00112: Warning: DocumentRoot [/usr/local/apache/docs/dummy-host2.example.com] does not exist

    问题原因:

    Apache在配置虚拟主机时会在配置文件中(httpd.conf)开启虚拟主机的配置文件;

    将“ #Include /etc/httpd/extra/httpd-vhosts.conf ”前面的“#”去掉;

    而“httpd-vhosts.conf ”中会有两个配置虚拟主机的例子:

    <VirtualHost *:80>
       ServerAdmin webmaster@dummy-host.example.com
       DocumentRoot "/usr/local/apache/docs/dummy-host.example.com"
       ServerName dummy-host.example.com
       ServerAlias www.dummy-host.example.com
       ErrorLog "logs/dummy-host.example.com-error_log"
       CustomLog "logs/dummy-host.example.com-access_log" common
    </VirtualHost>

    <VirtualHost *:80>
       ServerAdmin webmaster@dummy-host2.example.com
       DocumentRoot "/usr/local/apache/docs/dummy-host2.example.com"
       ServerName dummy-host2.example.com
       ErrorLog "logs/dummy-host2.example.com-error_log"
       CustomLog "logs/dummy-host2.example.com-access_log" common
    </VirtualHost>

    这样Apache在启动时就会去寻找以上两个不存在的文件夹,就会报错。

    解决方法:

    方法一:新建出不存在的文件夹;

      #cd /usr/local/apache
    
      #mkdir -p docs/dummy-host2.example.com  #这里是新建文件夹
    
      #mkdir -p docs/dummy-host.example.com

    方法二:将“httpd-vhosts.conf ”中的例子注释掉;

      #<VirtualHost *:80>
      #    ServerAdmin webmaster@dummy-host2.example.com
      #    DocumentRoot "/usr/local/apache/docs/dummy-host2.example.com"
      #    ServerName dummy-host2.example.com
      #   ErrorLog "logs/dummy-host2.example.com-error_log"
      #    CustomLog "logs/dummy-host2.example.com-access_log" common
      #</VirtualHost>

    方法三:配置虚拟主机时,不开启虚拟主机的配置文件,自己新建配置文件;

    #vim /etc/httpd/httpd.conf
    
    #Include /etc/httpd/extra/httpd-vhosts.conf
    
      Incloud /etc/httpd/extra/XXX.conf  #新建的配置文件一定要与“httpd-vhosts.conf”放在同一个文件夹内
    
      Incloud /etc/httpd/extra/XXX.conf  #文件名称可以自己定义

    更改完成之后重启Apache即可。

  • 相关阅读:
    JS调试工具
    什么是Web Service?
    win7怎么安装消息队列 MSMQ
    死锁产生的原因及四个必要条件
    项目管理模式之如何去除SVN标记
    AJAX中的请求方式以及同步异步的区别
    敏捷软件开发模型--SCRUM
    堆和栈
    UI产品设计流程中的14个要点
    Android中dp和px之间进行转换
  • 原文地址:https://www.cnblogs.com/fps2tao/p/7884553.html
Copyright © 2011-2022 走看看