nexus3搭建maven私服(完整版)

nexus3搭建maven私服,肯定能搭建好:

首先需要下载nexus和maven:

nexus下载地址:https://www.sonatype.com/nexus/repository-oss/download

官网比较慢下载,我已经上传csdn,无需积分,下载地址:

https://download.csdn.net/download/h_j_c_123/13168261

maven下载地址:https://maven.apache.org/

上传到服务器后解压出两个文件夹 nexus-3.19.1-01 和 sonatype-work:

进目录nexus-3.19.1-01,切换至bin目录:

nexus3搭建maven私服(完整版)_第1张图片

修改文件启动用户为root

nexus3搭建maven私服(完整版)_第2张图片

启动nexus命令是  ./nexus start 停止为 ./nexus stop 查看状态为 ./nexus status

nexus3搭建maven私服(完整版)_第3张图片

成功启动后访问 ip:8081(默认端口8081)

nexus3搭建maven私服(完整版)_第4张图片

登录输入账户和密码,之前默认是admin/admin123,但是有的就不是,请参考我的另一篇文章:https://blog.csdn.net/h_j_c_123/article/details/105780908

然后登录成功:

nexus3搭建maven私服(完整版)_第5张图片

nexus3搭建maven私服(完整版)_第6张图片

 

然后我们来搭建maven,下载安装包发送到服务器然后解压

nexus3搭建maven私服(完整版)_第7张图片

然后修改profile文件:

命令:vim /etc/profile  

主要修改的是maven的环境

nexus3搭建maven私服(完整版)_第8张图片

修改后source /etc/profile  让我文件生效,输入mvn -v 看maven是否安装成功

nexus3搭建maven私服(完整版)_第9张图片

那么重点来了,敲黑板:

配置nexus下载依赖,新建远程代理的,这里我们使用阿里云,存储地址可以自己新建也可以使用默认:

nexus3搭建maven私服(完整版)_第10张图片

nexus3搭建maven私服(完整版)_第11张图片

创建自己部署的jar

nexus3搭建maven私服(完整版)_第12张图片

nexus3搭建maven私服(完整版)_第13张图片

自己创建输入名字和选择存储地址

nexus3搭建maven私服(完整版)_第14张图片

我们也可以使用组来同时包括这个两个,输入名字和存储地址:

nexus3搭建maven私服(完整版)_第15张图片

选择组中包含的hosted和proxy

nexus3搭建maven私服(完整版)_第16张图片

成功后我们来配置服务器上的maven的setting配置文件:







  

  

  

  
  
    
  

  
  
    
  

  
  
    

    
  

  
  
    
     
	
	  
      self-group
      *
      *
      http://221.149.221.209:8081/repository/self-group/
    
  

  
  
    

    
  

  

这里面的主要配置就是mirror,是自己新建的组

nexus3搭建maven私服(完整版)_第17张图片

那么本地的maven应该如何配置,请看下面:







  
    D:\m2\repository\personal

  

  

  
  
    
  

  
  
    
  

  
  
    

    
	
      nexus
      admin
      xxxx
    
	
	
      self-group
      admin
      xxxxx
    
  

  
  
    
	 
	   
      self-group
      *
      *
      http://xxx.1xx.xxx.xx9:8081/repository/self-group/
    
  

  
  
    

    
  

  

主要的就是配置两块:

nexus3搭建maven私服(完整版)_第18张图片

nexus3搭建maven私服(完整版)_第19张图片

这样就完成了我们就可以使用自己的私服来下载jar包了

nexus3搭建maven私服(完整版)_第20张图片

nexus3搭建maven私服(完整版)_第21张图片

 

欢迎关注我的微信公众号,更多内容将在微信公众号中发布:

 

你可能感兴趣的:(Linux,nexus,maven,私服)