4

我最近更新了我的 ubuntu,我想在我的 Ubuntu 13.10 中编程,并且正在设置 apache2,每次我运行命令时:

sudo a2ensite default

我收到以下错误:

错误默认站点不存在

我该如何解决这个问题?

4

3 回答 3

11

要修复此问题以及在 apache 2.4 上运行的任何其他虚拟主机,我需要设置

默认(以及您拥有的任何其他虚拟主机)

作为

default.conf(添加 .conf 您已经设置的任何虚拟主机)

进入控制台(终端)并输入以下命令:

sudo mv /etc/apache2/sites-available/default /etc/apache2/sites-available/default.conf
sudo a2ensite default

我们将得到以下信息:

Enabling site default. To activate the new configuration, I needed to run: service apache2 reload

现在运行:

service apache2 reload

并做了。

或者创建 default.conf 文件,如果你没有它,这是默认情况下它应该包含的内容:

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog /var/log/apache2/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>
于 2013-11-11T12:04:56.010 回答
0

我遇到了同样的问题,所以我尝试将我的虚拟主机配置文件名从default更改为default.conf,如此处所述,但它仍然无法正常工作。

最后我明白了。还需要更改代码:

Order allow,deny
Allow from all

Require all granted

http://httpd.apache.org/docs/2.4/upgrading.html

之后,我重新启动了 apache,它又可以工作了

于 2014-05-09T08:49:16.660 回答
0

执行此操作的简单方法是将您的 .conf 文件或虚拟主机配置添加到站点可用文件夹中,然后在该文件夹中时再试一次。为我工作。

于 2014-02-27T14:15:49.043 回答