(해당 글은 Mac을 사용하여 진행하였습니다.)
CI/CD를 구축하기 위해서 jenkins를 설치해봅시다.
brew install jenkins
cd /usr/local/Cellar/jenkins
ls
cd 2.389
vi homebrew.mxcl.jenkins.plist
값 변경
httpListenAddress=127.0.0.1 > httpListenAddress=0.0.0.0
httpPort=8080 > httpPort=9090
:wq 엔터
brew services start jenkins
웹사이트에서 개발서버공인IP:9090 접근
(로딩화면)
(로딩화면에서 기다리면 나옴)
cat /Users/alfo/.jenkins/secrets/initialAdminPassword
Install suggeted plugins 버튼 클릭
(이미지 출처: https://pikachu987.tistory.com/60)
계정명이 아이디가 되는겁니다.
계정 입력 후 Save and Continue 클릭
끝!
좋은 글 감사합니다.
많은 도움이 되었습니다!