Mantis BT 설치하기
1. Mantis BT 다운로드
http://sourceforge.net/projects/mantisbt/files/mantis-stable/
※ 1.2.12에서는 Eclipse의 Task와 한글 연동이 안되는 것 같음
2. 압축풀기
다운로드 받은 파일의 압축을 풀고 Apache의 htdocs로 이동한다.
예) C:\Programs\Apache\htdocs\mantis
3. Mantis DB 설정
3.1 http://youdomatin/mantis_folder/admin/install.php로 접속
예) http://localhost/mantis/admin/install.php
3.2 DB 계정을 입력하고 Install/Upgrade 버튼을 클릭하면 설치가 시작되고, 설치가 성공하면 아래와 같은 결과가 뜸
4. 설치 결과 확인
http://yourdomain/mantis_folder/
예) http://localhost/mantis/login_page.php
계정 administrator / root 을 이용해 로그인
5. 언어 설정 및 메일 서버 연동
Mantis가 설치된 폴더로 이동하여 conf_inc.php를 수정
예) C:\Program\Apache2.2\htdocs\mantis
<?php
$g_hostname = 'localhost';
$g_db_type = 'pgsql';
$g_database_name = 'bugtracker';
$g_db_username = '';
$g_db_password = '';
$g_default_language = 'korean'; #기본 사용 언어
$g_phpMailer_method = PHPMAILER_METHOD_SMTP; #메일 연동 방법
$g_smtp_host = 'smtp.gmail.com'; #SMTP 주소
$g_smtp_connection_mode = 'tls'; #SMTP connection 모드
$g_smtp_port = '587'; #SMTP 포트
$g_smtp_username = 'your_mail@gmail.com'; #메일 계정
$g_smtp_password = 'your_pass'; #패스워드
$g_send_reset_password = ON; #Mantis의 암호를 변경할 경우 통보여부
$g_validate_email = ON; #e-mail 검증여부
?>
아래의 두개는 옵션이며, Admin Guide를 이용해 설정하도록 한다.