[{TableOfContents}]

!!!Account Manager Plugin 설치
* 참고 Url [http://trac-hacks.org/wiki/AccountManagerPlugin]
{{{
easy_install http://trac-hacks.org/svn/accountmanagerplugin/0.10
}}}

!!!htpasswd 방식의 인증일 경우
!Trac의 환경 설정 수정
{{{
vi /rcs/trac/sample/conf/trac.ini

[components]
acct_mgr.htfile.HtPasswdStore = enabled

[account-manager]
password_format = htpasswd
password_store = HtPasswdStore
password_file = #인증 파일 경로#
}}}
!설정후 퍼미션 권한이 없다고 나올경우 아파치에 환결설정 변경
{{{
    <Location />
        SetHandler mod_python
        PythonHandler trac.web.modpython_frontend

        #trac
        PythonOption TracEnvParentDir /rcs/trac
        PythonOption TracUriRoot /
        PythonOption TracLocale "ko_KR.utf8"
        SetEnv PYTHON_EGG_CACHE /tmp/trac-eggs
    </Location>
}}}

!!!apache또는 Trac 서버를 재시작
*주의 : 그룹에 TRAC_ADMIN 권한이 아닌 유저에 TRAC_ADMIN 권한이 있어야 함