Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Microservices
- 프로젝트 시작
- bootstrap
- Lambda
- #정규표현식
- 평가인증
- #Microservice
- 감사
- #Gradle Multi project with IntelliJ
- 분석 작업
- docker #docker tutorial
- Spring Boot
- WebJar
- 토익
- jv
- 방법론
- 년말
- 2010
- #단축키
- java
- #화면캡쳐 #macOS
Archives
- Today
- Total
사랑해 마니마니
Jenkins 인스톨, 시작하기 본문
Google에서 Install Jenkins로 검색
Jenkins 환경 구성하기
Jenkins 다운로드 받기
https://jenkins.io/에서 Download Click
Long-term Support(LTS)버전 다운로드 받기
Jenkins 설치하기
설치가 완료되면 Web Browser에 Getting Stared 페이지가 뜨고 Unlock Jenkins에 initial Admin Password 가 들어 있는 file path가 출력됨
해당 파일을 열어서 password copy해서 Web Browser에 붙여 넣기
macOS의 경우
$sudo less /Users/Shared/Jenkins/Home/secretes/initialAdminPassword
Customize Jenkins에서 별도로 plugin을 깔지 않고 [x]버튼을 눌러 종료
[Start using Jenkins]로 jenkins시작하기
기본 URL은 http://localhost:8080
젠킨스 시작하기[@Terminal]
# start
sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist
# stop
sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist
젠킨스 페스워드 변경하기
- config.xml: /Users/Shared/Jenkins/Home/users/admin/config.xml
- <passwordHash>#jbcrypt: ...enctryped password...</passwordHash>
- https://passwordhashing.com/BCrypt 에서 password hash값 얻기
- <passwordHash>에 붙여 넣고 재시작
Comments