일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Oracle install
- mysql dml
- Cannot prepare internal mirrorlist: No URLs in mirrorlist
- docker oracle12c
- Failed to download metadata for repo 'appstream'
- svn 특정 리비전 사이 추출
- svn dump
- xrdp
- svn 변경된 파일 추출
- grep
- expected at least 1 bean which qualifies as autowire candidate
- svn commit
- svn log
- taskkill
- svn 사용법
- docker 폐쇄망
- javax.servlet.GenericFilter
- postgres install
- apt-get update 오류
- svn update
- ant
- NEXUS
- 포스트그레스 설치
- svn
- Store password unencrypted
- svn load
- Remmina
- 프로젝트 네임변경 후 이클립스 로딩시 에러
- VirtualBox
- WH question
Archives
- Today
- Total
기억의 습작
Nexus를 내 PC에 설치 본문
설치방법
- 다운로드: http://maven.apache.org/download.cgi
- 톰캣이 설치된 경로 webapps 폴더 아래 nexus.war 파일명으로 카피 ( $ service tomcat start )
- http://localhost:8080/nexus 접속
- 처음 계정은 admin/ admin123
백업방법
$ /usr/share/tomcat/sonatype-work/nexus 폴더를 전부 백업해서 옮기면 됨
사용방법
war파일 등록
- http://localhost:8080/nexus 접속 후 로그인
- Repositories → 3rd party → Artifact Upload 이동
- GAV definition 을 from POM 으로 선택
- select POM to Upload 클릭하여 설치하고자 하는 war 파일을 등록
pom.xml 에 등록하여 사용
<!-- my personal repo -->
<repositories>
<repository>
<id>central</id>
http://ppusari.iptime.org:8080/nexus/content/groups/public/
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
http://ppusari.iptime.org:8080/nexus/content/groups/public/
<releases><enabled>true</enabled></releases>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
사용효과
- Proxy를 적용한 빠른라이브러리 다운로드
- 3rd 파티에서 제공하는 라이브러리 적용가능
- 프로젝트 개발자간의 잉ㄹ관된 라이브러리 사용관리
특징
- 직관적이고 뛰어난 사용성의 UI
- 빠르고 쉬운 설치 - war 파일 형태의 배포 파일
Repository의 용도와 목적
- Snapshots : 빌드 등 수시로 릴리즈 되는 바이너리를 배포 하는 장소
- Releases : 정식 릴리즈를 통해서 배포되는 바이너리를 저장하는 저장소
- 3rd party : 벤더등에서 배포하는 (Oracle,IBM등) 바이너리를 저장해놓는 장소로 특정 솔루션등을 사용할때, 딸려 오는 라이브러리등을 여기에 놓고 사용한다
- Proxy Repository : 원격에 원본 repository가 있는 경우, Local에 캐쉬 용도로 사용한다.
- Virtual Repository : Repository Group은 몇 개의 repository를 하나의 repository로 묶어서 단일 접근 URL을 제공한다.
기타
Nexus는 war파일을 다운로드 관리 하는 형성 관리이다
Artifactory (아티팩토리) 와 같은 관리 툴이지만 지금은 Nexus를 더 많이 사용한다.
728x90
반응형
LIST
'SCM (형상관리) > nexus' 카테고리의 다른 글
nexus에 jar 라이브러리 일괄 추가 (0) | 2022.02.18 |
---|