美文网首页maven技术文
Maven搭建私服Nexus

Maven搭建私服Nexus

作者: SuperKune | 来源:发表于2016-12-16 17:05 被阅读0次

    一、搭建Maven私服,使用Nexus搭建

    1、下载Nexus,点击nexus下载,下载nexus-2.13.0-01-bundle.tar.gz,并上传到linux服务器,当前上传到home目录

    2、 解压包:tar -zxvf nexus-2.12.0-01-bundle.tar.gz

    3、默认端口为8081,如需修改请查看配置文件conf/nexus.properties

    4、它本身不建议在root用户下使用,如果我们需要在root用户下启动服务,要先配置 bin/nexus 文件中的 RUN_AS_USER=root

    二、私服的启动和配置

    1、cd  /home/nexus-2.13.0-01/bin
         启动nexus    ./nexus start
         查看状态      ./nexus status

    2、启动后访问首页 http://172.16.1.254:8888/nexus/index.html(ip是服务器地址)
          默认账户密码:admin,admin123
          如访问不了,检查防火墙

    3、**打开 Repositories 将列表中所有Type为proxy 的项目的 Configuration 中的 Download Remote Indexes 设置为True **

    4、将Releases仓库的Deployment Policy设置为*Allow ReDeploy

    5、设置 deployment 账户密码,左边security-->users右键deployment,set password

    6、然后在Central 仓库上右键然后点击 Repair Index 下载中心仓库的索引文件,若干时间后,可以点击下边的 Browse Index 即可看见下载的索引文件。

    到此nexus配置完成,maven可以通过私服进行配置

    相关文章

      网友评论

        本文标题:Maven搭建私服Nexus

        本文链接:https://www.haomeiwen.com/subject/clnnmttx.html