[태그:] nexus

우분투에 넥서스 설치

1. 개요 우분투 16.04, Apache2, Tomcat7, JDK 1.8, Nexus nexus-2.13.0-01 버전을 기준으로 하여 설치 2. 넥서스 다운로드 톰캣과 연동하기 위해 war파일로 다운로드 wget http://www.sonatype.org/downloads/nexus-latest.war mkdir nexus-2.13.0-01 mkdir sonatype-work unzip nexus-latest.war -d nexus-2.13.0-01/ 주의사항 : 퍼미션 문제가 발생한다면 WEB-INF/classes폴더에 nexus.properties파일을 열어보면 아래와 같이 되어있다. nexus-work=${user.home}/sonatype-work/nexus /usr/share/tomcat7 폴더밑으로 sonatype-work/nexus 라는 폴더 생성하고 chown -R tomcat7 chgrp -R […]

더보기

넥서스 설정

1. 개요 Tomcat7, JDK1.6, nexus 2.2 버전을 기준으로 함 2. 넥서스 설치 http://www.sonatype.org/nexus/archived 에서 넥서스 2.2 다운 로드 압축을 풀어 D:\Service\Nexus\nexus-2.2 폴더에 넣는다. 3. Tomcat 설정 server.xml에 대한 설정 Tomcat Connectior의 uriworkermap.properties에 대한 설정 #/=wlb #/*=wlb /*.jsp=wlb /*.do=wlb /*.json=wlb #—————————- # nexus 설정 #—————————- /index.html=wlb /service/*=wlb /content/*=wlb /static/*=wlb #—————————- # Optionally filter out all .jpeg […]

더보기