Please assign a menu to the primary menu location under menu

Issue Tracking System

Issue Tracking System

How to Install JIRA + MariaDB on CentOS 6

Jira? Atlassian사에서 개발한 Issue Tracking System 이며, 프로젝트 스케쥴에 대한 관리도구와 개발원간에 작업을 배분하고 커뮤니케이션하는 도구로 사용 합니다. Figure 1. JIRA Architectural Overview   본 문서는 CentOS 6.x 에서 테스트 되었으며, Front-end는 Nginx가 위치하며 Reverse Proxy로 Jira에 연결 해주며, Jira는 standalone 형태로, RDBMS는 MariaDB로 사용하여 설치를 진행 하였습니다.   1. CentOS 설정 – Selinux 비활성화 # sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/g’ /etc/sysconfig/selinux   – iptables HTTP 80번 포트 허용 # nano /etc/sysconfig/iptables # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filter :INPUT ACCEPT :FORWARD ACCEPT :OUTPUT ACCEPT -A INPUT -m state –state ESTABLISHED,RELATED -j ACCEPT -A