일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
31 |
Tags
- 머신러닝기초
- ethers typescript
- ethers websocket
- git rebase
- erc4337 contract
- ambiguous function description
- 오블완
- 스마트컨트렉트 예약어 함수이름 중복
- 체인의정석
- Vue
- cloud hsm
- erc4337
- ethers type
- vue기초
- 스마트컨트렉트 함수이름 중복 호출
- 러스트 기초 학습
- 티스토리챌린지
- ethers v6
- 러스트 기초
- 러스트기초
- redux toolkit 설명
- redux 기초
- cloud hsm 서명
- Vue.js
- rust 기초
- cloud hsm 사용하기
- 계정추상화
- 컨트렉트 동일한 함수이름 호출
- 스마트 컨트렉트 함수이름 중복
- SBT표준
Archives
- Today
- Total
체인의정석
Jenkins 사용하기 (mac, docker) 본문
728x90
1. 설치 링크
https://www.jenkins.io/download/lts/macos/
Install the latest LTS version: brew install jenkins-lts
Start the Jenkins service: brew services start jenkins-lts
Restart the Jenkins service: brew services restart jenkins-lts
Update the Jenkins version: brew upgrade jenkins-lts
2. 설치
brew install jenkins-lts
3. 재실행
brew services restart jenkins-lts
4. UI 접속 하기
http://localhost:8080/
5. UI에 입력할 비밀번호 찾고 비밀번호 입력하기
아래 링크 참고해서 비밀번호 찾은 후 UI에서 입력 진행
https://www.jenkins.io/doc/book/system-administration/viewing-logs/
Viewing logs
Jenkins – an open source automation server which enables developers around the world to reliably build, test, and deploy their software
www.jenkins.io
내가 실행한 방법, 터미널을 실행하고 아래 명령어 입력
cat /Users/{유저이름}/.jenkins/secrets/initialAdminPassword
6. 플러그인 설치 - 기본세팅 또는 옵션 선택
이후, admin, id 설정 후 로그인
만약 화면의 ecosystem이라는 폴더에서 도커로 띄운다면
도커 desktop 먼저 실행 후
docker run -d \
-p 8080:8080 \
-p 50000:50000 \
--name ecosystem-jenkins \
-v /Users/chohyunki/Desktop/ecosystem:/var/jenkins_home \
jenkins/jenkins:lts
다음과 같이 도커 안에 들어가서 비밀번호를 알아오는 방법이 있다.
docker exec -it ecosystem-jenkins cat /var/jenkins_home/secrets/initialAdminPassword
728x90
반응형
'개발 > docker & linux' 카테고리의 다른 글
Cloud Watch - Log insight 사용하기 (0) | 2025.06.26 |
---|---|
인프라 기본 용어 정리 (1) | 2025.05.29 |
Aethir node 업데이트하기 스크립트 (0) | 2024.07.29 |
docker compose 사용법 정리 (0) | 2024.07.18 |
docker-compose 로 db 쉽게 만들고 mysqlworkbench로 접속하기 (1) | 2024.07.09 |
Comments