Sunday, July 27, 2014

Jenkins 서버 설치 (CentOS 6.5 - 64 bit)

  1. Jenkins 서버 설치 전에 필요한 것
    1. CentOS 6.5 (64-bit)가 설치된 시스템 (또는 VM)
    2. Java 설치 (최소 1.7 버전 이상)
  2. 설치 절차
    1. YUM을 이용한 Jenkins 서버 설치
      1. sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo
      2. sudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key
      3. sudo yum install jenkins
    2.  Jenkins 서비스 시작 또는 정지
      1. sudo service jenkins start/stop/restart
    3.  Jenkins의 웹 UI 화면 Access
      1. IE나 크롬 또는 Firefox 같은 웹브라우저를 오픈한 후 주소란에 IP 주소와 포트번호 8080을 입력하면 메인 페이지에 접속 가능 (예: http://192.168.2.15:8080) 
      2. 만약 접속이 안된다면 Firewall 설정을 다시 한 번 점검. Firewall 설정에 대해 잘 모른다면 iptables를 정지한 후 다시 한 번 접속. (예: service iptables stop)
  3. Source
    1. https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins+on+RedHat+distributions

No comments:

Post a Comment