0

私はubuntu 15.04を使用しています。

この URL のガイドを使用して suphp (レポ) をインストールしました: Install suphp with apache on ubuntu

この例のように仮想ホストを定義した後:

<VirtualHost 64.131.72.23:80>
ServerName some-site.com
ServerAlias www.some-site.com
DocumentRoot /home/mike/public_html
<IfModule mod_suphp.c>
    suPHP_UserGroup mike mike
</IfModule>
</VirtualHost>

Apache サービスを再起動したところ、次のエラーが発生しました。

Invalid command 'suPHP_UserGroup', perhaps misspelled or defined by a module not included in the server configuration


:/etc/apache2/sites-available# systemctl status apache2.service -l
apache2.service - LSB: Apache2 web server
   Loaded: loaded (/etc/init.d/apache2)
   Active: failed (Result: exit-code) since Wed 2016-01-20 00:36:26 CST; 41s ago
     Docs: man:systemd-sysv-generator(8)
  Process: 18692 ExecStop=/etc/init.d/apache2 stop (code=exited, status=0/SUCCESS)
  Process: 18718 ExecStart=/etc/init.d/apache2 start (code=exited, status=1/FAILURE)

Jan 20 00:36:26 numi apache2[18718]: * The apache2 configtest failed.
Jan 20 00:36:26 numi apache2[18718]: Output of config test was:
Jan 20 00:36:26 numi apache2[18718]: AH00526: Syntax error on line 7 of /etc/apache2/sites-enabled/wpdev.co.il.c                           onf:
Jan 20 00:36:26 numi apache2[18718]: Invalid command 'suPHP_UserGroup', perhaps misspelled or defined by a modul                           e not included in the server configuration
Jan 20 00:36:26 numi apache2[18718]: Action 'configtest' failed.
Jan 20 00:36:26 numi apache2[18718]: The Apache error log may have more information.
Jan 20 00:36:26 numi systemd[1]: apache2.service: control process exited, code=exited status=1
Jan 20 00:36:26 numi systemd[1]: Failed to start LSB: Apache2 web server.
Jan 20 00:36:26 numi systemd[1]: Unit apache2.service entered failed state.
Jan 20 00:36:26 numi systemd[1]: apache2.service failed.

編集

最初の回答によると、suPHP_UserGroup をラップして<Directory>も同じエラーが発生します。
私は大した専門家ではないので、今のところコンパイルはしません。多くの人が使用しているパッケージがなぜ私にはうまくいかないのかを理解するためです。

何か案は ?

4

1 に答える 1

0

http://www.suphp.org/DocumentationView.html?file=apache/CONFIG

suPHP_UserGroup (expects user- and groupname)

setid-mode "force" または "paranoid" でコンパイルされた場合のみサポートされます * PHP スクリプトを実行するユーザー名とグループ名を指定します。この設定は、 または コンテキスト内でのみ使用できます。例: suPHP_UserGroup foouser bargroup

./configure --prefix=/usr --sysconfdir=/etc --with-apr=/usr/bin/apr-1-config --with-apxs=/usr/sbin/apxs --with-apache-user =apache --with-setid-mode=paranoid --with-php=/usr/bin/php-cgi --with-logfile=/var/log/httpd/suphp_log --enable-SUPHP_USE_USERGROUP=yes

詳細 : suPHP でユーザー/グループを仮想ホストに設定し、docroot を使用する

于 2016-01-20T06:27:07.357 に答える