昨日「SuPHP」をインストールしましたが、「Apache」を再起動するたびに、以下のエラーが発生します:-
* Restarting web server apache2 [fail]
* The apache2 configtest failed.
Output of config test was:
AH00526: Syntax error on line 15 of /etc/apache2/sites-enabled/000-default.conf:
Invalid command 'suPHP_UserGroup', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
The Apache error log may have more information.
私のファイルの内容は次のとおり/etc/apache2/sites-enabled/000-default.conf
です:-
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<IfModule mod_suphp.c>
<Directory /var/www/html>
suPHP_UserGroup rocky rocky
</Directory>
</IfModule>
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
現在、「/var/www/html」の私の権限、ユーザー、およびグループは次のとおりです:-
root@rocky:/var/www# ll
total 12
drwxr-xr-x 3 rocky rocky 4096 Oct 29 05:38 ./
drwxr-xr-x 14 root root 4096 Oct 29 05:38 ../
drwxr-xr-x 8 rocky rocky 4096 Nov 1 15:29 html/
少しだけ情報を提供したいと思います。
以前の/var/www
コンテンツは で実行されていましたが、と を通常のユーザー グループ、つまり(ユーザー) と(グループ)にroot
変更しました。owner id
Group id
rocky
rocky
つまり、 1) ルート ユーザーとしてディレクトリを実行したり参照したりする必要はありません。 2) を参照するときにhttp://localhost
、エラーは発生しませんForbidden
。 3) ルート ユーザーとしてエディターを実行する必要はありません。
私がしたこと ?
- 権限とフォルダはすでに確認済みで、現在のユーザー(つまり私)である
755
ユーザーとグループによって実行されています。rocky
失敗 - ディレクトリを
root
、user id
に戻してみましたgroup id
。 -失敗 suPHP_UserGroup rocky rocky
を に編集しましたsuPHP_UserGroup root root
。
何か見落としているのでしょうか。Web サーバーが動作せず、以下のエラーが発生しています。ご協力をお願いします。
* Restarting web server apache2 [fail]
* The apache2 configtest failed.
Output of config test was:
AH00526: Syntax error on line 15 of /etc/apache2/sites-enabled/000-default.conf:
Invalid command 'suPHP_UserGroup', perhaps misspelled or defined by a module not included in the server configuration
Action 'configtest' failed.
The Apache error log may have more information.
そしてログは言う:-SoftException in Application.cpp:566: Directory "/var/www/html/" is writeable by group
どうか助けてください。ありがとう
答え1
さて、グループからユーザーを削除するには、ターミナルで次のコマンドを使用します。
sudo deluser username group
ユーザーをグループに追加する場合は、次のコマンドを使用します。
sudo usermod -a -G group username
質問に指定されていないため、ユーザーの追加と作成に何を使用したかわかりません。そのため、ユーザーを削除してから、提供したコマンドを使用して再作成してください。それでも問題が解決しない場合は、ユーザーの作成方法を教えてください。
また、gnome-system-tool をインストールして、次のようにユーザーとグループを視覚的に管理することもできます。
sudo apt-get install gnome-system-tools
答え2
このイライラするものを削除することで、この問題を解決できましたsuPHP
。修正に時間がかかり、サポートもほとんどないため、これ以上は必要ありません。
ありがとう