아래와 같이 (화면에서는 admin 이지만, test 라는 이름은 username을 설정하고 Add 버튼을 클릭하면 아래와 같이 admin으로
바뀐다) 계정을 추가할때 에러가 발생했다.
password 파일의 퍼미션을 봤더니 아래와 같다.
[root@localhost sunny]# ll
합계 8
-rw-r--r-- 1 root root 20 2009-07-28 18:49 trac.htpasswd
drwxr-xr-x 10 apache apache 4096 2009-07-28 16:33 wmc500-root
그래서 아래와 같이 소유권을 추가 시켜주었다.
[root@localhost trac]# chown apache:apache ./trac.htpasswd
[root@localhost trac]# ll
합계 8
-rw-r--r-- 1 apache apache 20 2009-07-28 18:49 trac.htpasswd
drwxr-xr-x 10 apache apache 4096 2009-07-28 16:33 wmc500-root
이렇게 해도 결과는 마찬가지... 그래서 상위 디렉토리로 올라가서 디렉토리에도 소유권을 바꾸었다.
[root@localhost xxxx]# chown apache:apache ./trac
[root@localhost xxxx]# ll
합계 28
drwx------ 2 root root 16384 2009-07-09 13:46 lost+found
drwxr-xr-x 3 root root 4096 2009-07-10 09:26 svn
drwxr-xr-x 3 apache apache 4096 2009-07-28 18:48 trac
이렇게 하니까 위의 문제가 해결되었다.
'Research > Linux' 카테고리의 다른 글
Fedora9에서 Logitech Marble Mouse(Tracball) wheel 사용하기 (0) | 2009.08.10 |
---|---|
TRAC: anonymous Default permission (0) | 2009.07.31 |
TRAC: web admin 설치시 주의할 점 (0) | 2009.07.30 |
TRAC: Account Manager Plugin 설치 (0) | 2009.07.30 |
TRAC: easy_install 설치 (1) | 2009.07.30 |