Ubuntu Server에 GitLab 설치 Jenkins BlueOcean 연동 + MSBuild

1. Ubuntu 설치 먼저 ubuntu 서버를 설치합니다. https://www.ubuntu.com/download/server iso 파일을 다운로드 받고 iso이미지를 통해 부팅가능한 usb를 만듭니다. http://rufus.akeo.ie/ Ubuntu를 설치한 뒤 링크에서 지시하는데로 따라서 gitlab을 설치합니다. https://about.gitlab.com/installation/#ubuntu 2. GitLab Community Edition 설치 쉘에서 다음과 같이 입력합니다. sudo apt-get update : apt-get을 업데이트 합니다. sudo apt-get install -y curl openssh-server ca-certificates : curl, openssh-server, ca-certificates을 설치합니다. 모든 프롬프트결과에 대해서는 y를 입력합니다. curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh | sudo bash: gitlab comunity edition 설치를 위한 스크립트 실행합니다 sudo EXTERNAL_URL="http:// gitlab.example.com " apt-get install gitlab-ce : gitlab을 설치합니다. gitlab.example.com 대신 외부에서 접속할때 사용할 ip 또는 hostname을 사용합니다. sudo gitlab-ctl reconfigure : 설정을 적용합니다. 설정을 변경할때 마다 실행합니다. 3. GitLab 접속 쉘에서 다음과 같이 입력합니다. ifconfig : 현재 서버의 ip를 확인합니다. 브라우저에서 확인된 IP로 접속한다. Password 설정화면이 나옵니다. Password를 지정하면 관리자로 로그인 합니다. username : root pass...