trac 0.8.4 설치한후 웹상에서의 화면이 보이질 않습니다.

soske의 이미지

trac를 인스톨 했습니다.
인스톨 후 trac 프로젝트 홈페이지에 있는글 보고 따라했습니다.
환경초기 설정은 아래와 홈피에 있는것처럼 생성을 해줬습니다.

ScriptAlias /trac /usr/local/share/trac/cgin-bin/trac.cgi 
<Location "/trac"> 
   SetEnv TRAC_ENV "/home/trac/trac_project_env/" 
</Location> 

<Location "/trac"> 
   SetHandler mod_python 
   PythonHandler trac.ModPythonHandler 
   PythonOption TracUriRoot "/trac" 
   PythonOption TracEnv /home/trac/trac_project_env 
</Location> 

# You need this to allow users to authenticate 
# trac.htpasswd can be created with 
# cmd 'htpasswd -c trac.htpasswd' (UNIX) 
# do 'man htpasswd' to see all the options 
<Location "/cgi-bin/trac.cgi/login"> 
   AuthType Basic 
   AuthName "blog" 
   AuthUserFile /home/trac/trac.htpasswd 
   Require valid-user 
</Location>

위와 같이 httpd.conf 파일을 설정했습니다.

http://192.168.0.3/trac 하면 익스플로러에서

Forbidden 
You don't have permission to access /trac on this server. 

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request. 


-------------------------------------------------------------------------------- 

Apache/2.0.54 (FreeBSD) PHP/5.0.5 mod_python/3.1.4 Python/2.4.2 Server at 192.168.0.3 Port 80

이렇게 나옵니다. 퍼미션 문제라고 나오는데 실행권한을 777권한을 줘도 안되네요. 무슨 문제인지.. 알수가 없어서 질문드립니다. fastcgi나 mod-python 둘다 해봤는데 마찬가지더군요.

lacovnk의 이미지

1.

ScriptAlias /trac /usr/local/share/trac/cgin-bin/trac.cgi

cgi-bin 아닌가요?

2.

apache reload는 하신거죠? restart라도 ㅎㅎ (전 가끔 안해놓고 왜이러지.. 하는 경우가 많아요 -o- )

soske의 이미지

제가 오타를 냈군요.
혹시나 해서 다시 설정 파일을 살펴봐도 마찬가지입니다.
아파치는 다시 실행 시켰구요.

똑같은 메시지가 나옵니다.
권한이 없다.. 무슨 문제인지...