Application.cpp:566의 SoftException: "/var/www/html/" 디렉터리는 그룹별로 쓸 수 있습니다.

Application.cpp:566의 SoftException: "/var/www/html/" 디렉터리는 그룹별로 쓸 수 있습니다.

어제 "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 idGroup idrockyrocky

그래서, 그것은 :- 1). 루트 사용자로 디렉토리를 실행하거나 탐색할 필요가 없습니다. 2). 을 (를) 탐색할 때 오류가 http://localhost발생하지 않습니다 Forbidden. 삼). 루트 사용자로 편집기를 실행할 필요가 없습니다.

내가 뭘 한거지 ?

  1. 나는 이미 권한과 폴더를 확인했으며 현재 사용자(즉, 나)인 755사용자와 그룹에 의해 실행되고 있습니다 .rocky성공하지 못함
  2. root디렉토리를 다시 , user id및 로 변경해 보았습니다 group id. -성공하지 못함
  3. suPHP_UserGroup rocky rocky을(를) 편집했습니다 suPHP_UserGroup root root.

누락된 것이 있습니까? 아래 오류로 인해 웹 서버가 작동하지 않습니다. 친절하게 도와주세요.

     * 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. 수정하는 데 더 많은 시간이 걸리고 지원이 매우 적기 때문에 더 이상 필요하지 않습니다.

감사해요

관련 정보