web-dev-qa-db-ja.com

Apache2が起動しない-エラー無効なコマンド「ProxyRequests」

私が抱えている次の問題について、何らかのガイダンスを得ることを望んでいました。 Apache2サーバーを起動しようとすると、次のエラーが発生します。

user@kali:~# service Apache2 start
Job for Apache2.service failed because the control process exited with error code.
See "systemctl status Apache2.service" and "journalctl -xe" for details.

これが私が次に行うことです。

user@kali:~# journalctl | tail
Jan 21 01:19:32 kali pulseaudio[839]: E: [alsa-sink-ES1371/1] alsa-sink.c: Most likely this is a bug in the ALSA driver 'snd_ens1371'. Please report this issue to the ALSA developers.
Jan 21 01:19:32 kali pulseaudio[839]: E: [alsa-sink-ES1371/1] alsa-sink.c: We were woken up with POLLOUT set -- however a subsequent snd_pcm_avail() returned 0 or another value < min_avail.
Jan 21 01:19:35 kali systemd[1]: Starting The Apache HTTP Server...
Jan 21 01:19:35 kali apachectl[1355]: AH00526: Syntax error on line 1 of /etc/Apache2/sites-enabled/ajp.conf:
Jan 21 01:19:35 kali apachectl[1355]: Invalid command 'ProxyRequests', perhaps misspelled or defined by a module not included in the server configuration
Jan 21 01:19:35 kali apachectl[1355]: Action 'start' failed.
Jan 21 01:19:35 kali apachectl[1355]: The Apache error log may have more information.
Jan 21 01:19:35 kali systemd[1]: Apache2.service: Control process exited, code=exited status=1
Jan 21 01:19:35 kali systemd[1]: Apache2.service: Failed with result 'exit-code'.
Jan 21 01:19:35 kali systemd[1]: Failed to start The Apache HTTP Server.

Ajp.confファイルをプルアップすると、これが表示されます。

ProxyRequests Off
# Only allow localhost to proxy requests
<Proxy *>
Order deny,allow
Deny from all
Allow from localhost
</Proxy>
# Change the IP address in the below lines to the remote servers IP address hosting the Tomcat instance
ProxyPass                 / ajp://**.**.*.***:8009/
ProxyPassReverse    / ajp://**.**.*.***:8009/
3
dfreelander202

私が抱えている次の問題について、何らかのガイダンスを得ることを望んでいました。

答えはエラーメッセージで示されます。

無効なコマンド 'ProxyRequests'、おそらくスペルが間違っているか、サーバー構成に含まれていないモジュールによって定義されています

ProxyRequestsはスペルミスがないので、おそらくロードしていませんmodules/mod_proxy.so

httpd.conf、 変化する:

#LoadModule proxy_module modules/mod_proxy.so

に:

LoadModule proxy_module modules/mod_proxy.so
3
DavidPostill