CI,CD
-
Jenkins - Mac 에 Jenkins 설치 및 세팅CI,CD 2024. 9. 16. 16:28
Mac 에 Jenkins 설치맥북에 Jenkins를 설치하고 세팅해보자.brew 로 설치가 가능하며 아래의 명령어들로 간편하게 설치가 가능하다.brew install jenkins-lts # Install the latest LTS version brew services start jenkins-lts # Start the Jenkins servicebrew services restart jenkins-lts # Restart the Jenkins serviceNginx 와 포트 충돌기본적으로 jenkins 는 8080 포트로 서비스가 실행된다.위 명령어로 젠킨스 서비스 실행시키고 localhost:8080 으로 접속하면 ui 환경으로 접속하게 된다.하지만 내 맥에서는 Nginx 가 8080 으로 돌아가..