Apache tomcat 未重新启动

Apache tomcat 未重新启动

我使用自定义包安装了 Apache tomcat

sudo apt-get install tomcat6

我尝试在 Ubuntu 终端中使用它重新启动 Apache tomcat

sudo service tomcat6 restart

然后我收到以下错误

Invalid command 'ProxyRequests', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
The Apache error log may have more information.
   ...fail!

我需要如何检查错误日志

答案1

在终端中以 root 身份尝试以下命令

a2enmod proxy 

然后重新启动

答案2

您的 apache 配置不正确。我不知道您安装了哪个自定义包,但请检查 /etc/apache2/

也许可以这样做:

grep -R “代理请求” /etc/apache2/*

查看此问题来自哪个文件并修复它。如果您不知道需要修复什么,您可以发布输出。

相关内容