十年網(wǎng)站開發(fā)經(jīng)驗 + 多家企業(yè)客戶 + 靠譜的建站團隊
量身定制 + 運營維護+專業(yè)推廣+無憂售后,網(wǎng)站問題一站解決
一、搭建nexus服務(wù)的意義
成都創(chuàng)新互聯(lián)專注于企業(yè)網(wǎng)絡(luò)營銷推廣、網(wǎng)站重做改版、安達網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5頁面制作、商城開發(fā)、集團公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為安達等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。
作為內(nèi)網(wǎng)的統(tǒng)一代理,團隊合作開發(fā)時不用每人都去外網(wǎng)下載一次;
解決部分變態(tài)公司內(nèi)網(wǎng)管制無法訪問外網(wǎng)的問題,選一臺有外網(wǎng)權(quán)限的機器搭建服務(wù)器,其余人直接內(nèi)網(wǎng)訪問此服務(wù);
團隊合作開發(fā)時解決maven項目依賴問題;
二、安裝nexus
# 下載安裝包: wget https://sonatype-download.global.ssl.fastly.net/nexus/oss/nexus-2.14.4-03-bundle.tar.gz # 解壓 mkdir /data/apps cd /data/apps tar -zxvf ~/nexus-2.14.4-03-bundle.tar.gz
三、配置nexus
編輯配置文件:vim conf/nexus.properties
# Jetty section application-port=8081 # 訪問端口 application-host=0.0.0.0 # 綁定IP nexus-webapp=${bundleBasedir}/nexus # 指定nexus程序目錄 nexus-webapp-context-path=/nexus # 指定訪問的二組目錄 # Nexus section nexus-work=${bundleBasedir}/../sonatype-work/nexus runtime=${bundleBasedir}/nexus/WEB-INF
以上都是默認配置,對應(yīng)的訪問地址為: http://x.x.x.x:8081/nexus
如果要改為http://x.x.x.x:8081,則修改nexus-webapp-context-path=/即可
四、啟動nexus
啟動腳本:bin/nexus
# 啟動腳本有如下參數(shù)可選 [root@ci-gitlab nexus-2.14.4-03]# bin/nexus Usage: ./nexus { console | start | stop | restart | status | dump }
注意:nexus采用wrapper做為WEB容器,nexus只是shell腳本,最終會調(diào)用jsw目錄下對應(yīng)平臺中的wrapper二進制文件
五、管理nexus
1. 默認的用戶:
admin/admin123 deployment/deployment123
2. 修改用戶信息
admin登陸后,點擊左側(cè)【Security–Users】,在列表中選擇用戶,右鍵可更改密碼和重圍密碼, 底部表格中可修改用戶其余信息
六、在項目中使用nexus
1. 作為插件庫
點擊左側(cè)【Views/Repositories–Repositories】,選擇【Public Repositories】,復(fù)制其Repository Path字段
編輯pom.xml文件,添加如下段:
releases Team Nexus Repository ${Repository Path} snapshots Team Nexus Repository ${Repository Path}
2. 作為deploy庫
點擊左側(cè)【Views/Repositories–Repositories】,選擇【 Release 或 Snapshots】,復(fù)制其Repository Path字段
編輯pom.xml文件,添加如下段:
ci-releases Gigold Nexus Repository http://ci-gitlab:8081/content/repositories/releases ci-snapshots Gigold Nexus Repository http://ci-gitlab:8081/content/repositories/snapshots/
注意:不設(shè)置distributionManagement段,執(zhí)行mvn deploy會報如下錯誤:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project helloworld-a: Deployment failed: repository element was not specified in the POM inside distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter -> [Help 1]
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。