Trac PlugIn 설치

1. RPC 플러그인 다운로드 plug-in
XmlRpc : 다운로드
RpcExt : 다운로드
2. /usr/share/trac/plugins/ 폴더로 이동
3. unzip XXXX-plugin.zip 각각 압축 해제
4. cd $UNZIP_DIR/PATH/ (setup.py 있는 디렉토리로 이동)
5. python setup.py bdist_egg 실행
6. easy_install $UNZIP_DIR/PATH (setup.py가 존재하는 디렉토리 지정)
7. vi /trac/$PROJECT/conf/trac.ini
   [components]
   tracrpc.* = enabled
8. Apache 재기동

Permission denied /root/.python-eggs 에러 발생시에는
/etc/apache2/sites-enable/trac 파일을 열어서 아래와 같이
PYTHON_EGG_CACHE 값 지정 후 Apache 재기동

<Location /trac>
    SetHandler mod_python
    PythonHandler trac.web.modpython_frontend
    PythonOption TracEnvParentDir /var/lib/trac
    PythonOption TracUriRoot /trac
    PythonOption TracLocale "ko_KR.utf8"
    SetEnv PYTHON_EGG_CACHE /tmp/trac-eggs
</Location>

이클립스 Trac 플러그인 설치
업데이트 주소 : http://trac-hacks.org/svn/eclipsetracplugin/eclipse/update/
플러그인 홈 : http://www.trac-hacks.org/wiki/EclipseTracPlugin

+ Recent posts