sudo rm .conf 文件后 apache2 重启出错

sudo rm .conf 文件后 apache2 重启出错

我之前在 /etc/apache2/sites-available 中创建了一个名为“gs30D7.com.conf”的 .conf 文件,并对其运行了 sudo a2ensite,以便可以使用它。但是我最近通过运行以下命令删除了该文件:

sudo rm gs30D7.com.conf 但是现在 apache 无法重新启动并且我收到此错误:

 * Restarting web server apache2                                         [fail] 
 * The apache2 configtest failed.
Output of config test was:
apache2: Syntax error on line 219 of /etc/apache2/apache2.conf: Could not
 open configuration file /etc/apache2/sites-enabled/gs30D7.com.conf: No 
such file or directory
Action 'configtest' failed.
The Apache error log may have more information.

我查看了 apache2.conf,但没有看到对该文件的引用。

错误日志中显示的内容如下:

[Wed May 18 20:05:14.098788 2016] [mpm_prefork:notice] [pid 10666] 
AH00169: caught SIGTERM, shutting down

有人知道怎么修这个东西吗?

答案1

您没有禁用该网站。希望在您删除它之后它仍然有效。

sudo a2dissite gs30D7.com.conf
sudo /etc/init.d/apache2 force-reload

或者

sudo service apache2 restart

相关内容