참고링크 [Bottom] [Top]
Bug tracking system Bug_tracking_system
Issue tracking system Issue_tracking_system
Comparison of issue tracking systems Comparison_of_issue_tracking_systems
- 웹 기반 버그추적 시스템
Bugzilla http://www.bugzilla.org
Mantis http://www.mantisbt.org
Trac Project http://trac.edgewall.org
- 웹서버 설치 도움 링크
(근사모) The Pro-Style Group - http://www.apmsetup.com
- APM_Setup, PHP Setup for IIS, Tomcat for Windows 툴 제공
- 이슈 트래커 개발자가 들려주는 이슈 트래커 이야기
Part 1: 무엇을 어떻게 골라쓸까? (2007년 11월) http://www.ibm.com/developerworks/kr/library/s_issue/20071127/
Part 2: 이슈 트래커를 슬기롭게 활용하자. (2007년 12월) http://www.ibm.com/developerworks/kr/library/s_issue/20071231/
Mantis 설치 [Bottom] [Top]
- PHP with IIS 설치하기
- Mantis 다운로드
- Mantis 설치하기
- mantis 파일을 압축해제 한다.
인터넷 정보 서비스 에서 mantis 폴더를 가상디렉토리로 지정한다.
- DBMS(예: MySQL) 에 DB 를 생성한다.
mantis 설정 파일을 수정한다. config_defaults_inc.php 파일을 config_inc.php 로 복사한 후 다음과 같이 수정한다.
$g_hostname = 'DB_서버'; $g_db_username = 'DB_계정'; $g_db_password = 'DB_비밀번호'; $g_database_name = '데이터베이스'; $g_db_type = 'mysql'; # 'mysql', 'pgsql', 'mssql', 'oci8', 'db2' $g_phpMailer_method = 2; # 2: SMTP $g_smtp_host = 'SMTP_서버'; $g_smtp_username = 'SMTP_계정'; $g_smtp_password = 'SMTP_비밀번호'; $g_default_language = 'korean';
Mantis 설치 전 요구사항을 점검한다. http://localhost/mantis/admin/ 페이지에서 Check your installation 링크를 클릭한다.
요구사항 점검이 완료되면 http://localhost/mantis/admin/install.php 에서 설치를 진행한다.
- 처음 관리자 계정 로그인하기
설치 후 관리자 계정으로 로그인하여 암호를 변경한다.
- 관리자 계정 정보: administrator / root
참고> MANTIS with IIS http://kaistizen.net/EE/index.php/weblog/comments/mantis_with_iis
