1. 程式人生 > >window安裝nexus(maven私服)

window安裝nexus(maven私服)

一、 前期準備

1、window環境(演示為win10)

2、安裝jdk環境(1.8版本以上)

二、環境配置

1、jdk環境檢查

java -version  ##若無法識別 則環境變數需要設定

2、修改配置檔案

##座標
解壓路徑\nexus-3.7.1-02-win64\nexus-3.7.1-02\etc\nexus-default.properties
##配置引數

## DO NOT EDIT - CUSTOMIZATIONS BELONG IN $data-dir/etc/nexus.properties
##
# Jetty section
application-port=8081      ##埠號
application-host=0.0.0.0   ##ip   需要改為實際ip才可遠端訪問 否則為本地使用
nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-requestlog.xml
nexus-context-path=/

# Nexus section
nexus-edition=nexus-pro-edition
nexus-features=\
 nexus-pro-feature

三 、部署與驗證

1、用管理員身份啟動cmd

2、切換到軟體工作目錄

cd /d F:\mysoft\nexus-3.7.1-02-win64\nexus-3.7.1-02\bin    ##解壓目錄因人而異

3、啟動(基於2步驟)

###################   前臺執行nexus   ###########################

nexus.exe  /run     ##控制檯啟動

###################   後臺執行nexus   ###########################

nexus.exe   /install   ##安裝為windows服務
nexus.exe   /start     ##啟動nexus服務
nexus.exe   /run       ##執行 


備註:第一次使用前臺執行 則切換後臺出現如上 不能刪除的提示  直接雙擊該目錄下nexus.exe執行nexus服務
     修改配置檔案,均為第一次為主,執行後配置檔案被轉移儲存到
     F:\mysoft\nexus-3.7.1-02-win64\sonatype-work\nexus3\etc\nexus.properties
     可以以此檔案核對啟動配置
     若修改配置:這需要快取文件重新配置

###################   其他nexus命令   ###########################

nexus.exe  /uninstall   ##解除安裝服務  預設停止服務
nexus.exe  /stop        ##停止服務

4、驗證nexus啟動

http://ip:port/   ##配置檔案預設 為/ 做根路徑

5、若後臺啟動服務則,檢視服務狀態

找到nexus,右鍵屬性可以對服務進行檢視

祝你成功