CentOS 下搭建maven倉庫

1:下載maven和nexus,並解壓。
shell

wget http://apache.fayea.com/apache-mirror/maven/maven-3/3.1.1/binaries/apache-maven-3.1.1-bin.tar.gz
wget http://download.sonatype.com/nexus/oss/nexus-2.9.0-04-bundle.tar.gz
tar xzf apache-maven-3.1.1-bin.tar.gz 
tar xzf nexus-2.9.0-04-bundle.tar.gz

2:配置環境變量,編輯/etc/profile文件,添加以下代碼。apache

MAVEN_HOME=/usr/local/apache-maven-3.0.3
export MAVEN_HOME
export PATH=${PATH}:${MAVEN_HOME}/bin

3:驗證maven安裝配置是否成功,首先加載環境變量的配置。執行maven命令查看版本信息。若是查當作功,那麼maven的安裝已經成功,剩下來只須要搭建maven倉庫了。瀏覽器

source /etc/profile
mvn -v

4:啓動nexus。app

cd /usr/local/nexus-2.9.0-04/bin
./nexus start

    若是這次提示以下信息,能夠修改nexus內容:maven

    ****************************************
    WARNING – NOT RECOMMENDED TO RUN AS ROOT
    ****************************************
    If you insist running as root, then set the environment variable RUN_AS_USER=root before running this     script.this

vi nexus

    找到RUN_AS_USER=這一行,修改成:RUN_AS_USER=root,再次啓動以後,查看日誌信息。spa

tail -100f ../logs/wrapper.log

    若是報出錯誤爲:Unsupported major.minor version 51.0    說明jdk版本太低,須要使用 JDK1.7。日誌

    我懶得再安裝JDK1.7了,因此從新下載了nexus-2.5.0版本。接着重複上面的啓動步驟。code

    當日志末尾處看到:Started InstrumentedSelectChannelConnector@0.0.0.0:8081,說明已經啓動成功。ip

    打開瀏覽器輸入:http://host_address :8081/nexus。默認的用戶名/密碼:admin/admin123

相關文章
相關標籤/搜索