• Linux安装Nexus3搭建maven私服超详细搭建上传步骤


            下载nexus3.x

    上传nexus压缩包并解压

    启动

    开启端口号

    浏览器访问

    ​编辑

    设置开机自启动 

    运行用户为root (编辑nexus bin下的nexus.rc)

     修改nexus3启动时要使用的jdk版本

    修改nexus3默认端口 

     私服新建自定义的仓库

    添加角色和用户 

    添加角色

    添加用户

    使用 Maven 私服 

    修改服务端配置文件

    修改本地maven配置文件

    修改idea中的POM文件


    Nexus是一个强大的Maven仓库管理器,它极大地简化了自己内部仓库的维护和外部仓库的访问,也就是我们常说的私服

    下载nexus3.x

    官方下载极其慢,这里提供网盘下载:

    链接:https://pan.baidu.com/s/1l82aQLPE4V745tXF8ezUxw 
    提取码:6lzf

    上传nexus压缩包并解压

    1. cd /data
    2. tar -zxvf nexus-3.25.1-04-unix.tar.gz

    启动

    1. cd nexus-3.25.1-04//bin/
    2. ls
    3. ./nexus run &
    1. [root@localhost nexus]# cd nexus-3.25.1-04//bin/
    2. [root@localhost bin]# ls
    3. contrib nexus nexus.rc nexus.vmoptions
    4. [root@localhost bin]# ./nexus run &
    5. [1] 106495
    6. [root@localhost bin]# WARNING: ************************************************************
    7. WARNING: Detected execution as "root" user. This is NOT recommended!
    8. WARNING: ************************************************************

    启动成功需要等待几分钟

    开启端口号

    1. [root@localhost bin]# firewall-cmd --zone=public --add-port=8081/tcp --permanent
    2. success
    3. [root@localhost bin]# firewall-cmd --reload
    4. success

    浏览器访问

    默认8081端口

     登录账号

     账号默认是admin

    查看密码

    1. find -name admin.password
    2. ./sonatype-work/nexus3/admin.password
    3. cat ./sonatype-work/nexus3/admin.password
    4. a3dffe94-17b2-4aea-bcc3-95d1ba126442

     登录后会出现重置密码输入密码

    设置开机自启动 

    创建服务

    vim /usr/lib/systemd/system/nexus.service

     按i将下面复制进去

    1. [Unit]
    2. Description=nexus service
    3. [Service]
    4. Type=forking LimitNOFILE=65536 #警告处理
    5. ExecStart=/data/nexus-3.25.1-04/bin/nexus start
    6. ExecReload=/data/nexus-3.25.1-04/bin/nexus restart
    7. ExecStop=/data/nexus-3.25.1-04/bin/nexus stop
    8. Restart=on-failure
    9. [Install]
    10. WantedBy=multi-user.target

    将服务加入开机启动

    systemctl enable nexus.service

    重新加载配置文件

    systemctl daemon-reload

    运行用户为root (编辑nexus bin下的nexus.rc)

    1. cd nexus-3.25.1-04/bin/
    2. vim nexus.rc

     修改nexus3启动时要使用的jdk版本

    1. cd nexus-3.25.1-04/bin/
    2. vim nexus

    按i将下面添加进去

    INSTALL4J_JAVA_HOME_OVERRIDE=/root/java/jdk-11.0.15.1

    修改nexus3默认端口 

    文件在/data/nexus-3.25.1-04/etc/nexus-default.properties

    [root@localhost nexus]# vim nexus-3.25.1-04/etc/nexus-default.properties

     私服新建自定义的仓库

    点击Create repository,然后选择类型为 maven2(hosted)

     

    输入仓库名称 private-release(自定义),并在 Version policy 一栏中选择 Release,表示这个仓库的存储依赖为正式发布的组件,然后在 Deployment policy 一栏中选择 Allow redeploy,允许部署和更新私服上的组件。
    点击Create repository 之后,就可以在仓库列表看到自定义的仓库了,我们再按照同样方式操作添加一个 snapshot 仓库,只需在 Version policy 一栏调整为 Snapshot 。 快照仓库的创建 

    添加角色和用户 

    添加角色

    添加用户

    点击 Create local user,填入用户名,密码等必填信息之后,关联我们先前的创建的角色即可,点击Create local user保存,创建成功。

     

    使用 Maven 私服 

    修改服务端配置文件

    在服务器上,打开 /data/nexus-3.25.1-04/system/setting.xml (vim setting.xml)

    1. cd nexus-3.25.1-04/system
    2. vim settings.xml

    这里添加 true 可以上传带SHAPSHOT的版本,也就是说可以上传到snapshot类型的库中,不加的话在idea中只能把SHAPSHOT后缀去掉,否则会报错。 

    1. <settings>
    2. <servers>
    3. <server>
    4. <id>buba-release</id>
    5. <username>qlx</username>
    6. <password>123456</password>
    7. </server>
    8. <server>
    9. <id>buba-snapshot</id>
    10. <username>qlx</username>
    11. <password>123456</password>
    12. </server>
    13. </servers>
    14. <profiles>
    15. <profile>
    16. <id>development</id>
    17. <repositories>
    18. <repository>
    19. <id>buba-release</id>
    20. <url>http://192.168.216.135:8081/repository/buba-release/</url>
    21. <releases><enabled>true</enabled></releases>
    22. <snapshots>false</snapshots>
    23. </repository>
    24. <repository>
    25. <id>buba-snapshot</id>
    26. <url>http://192.168.216.135:8081/repository/buba-snapshot/</url>
    27. <releases><enabled>false</enabled></releases>
    28. <snapshots><enabled>true</enabled></snapshots>
    29. </repository>
    30. </repositories>
    31. </profile>
    32. </profiles>
    33. <activeProfiles>
    34. <activeProfile>development</activeProfile>
    35. </activeProfiles>
    36. </settings>

    修改本地maven配置文件

    在本地maven的配置文件中的标签下 ,添加连接私服的账号密码和ID配置如下

    1. <server>
    2. <id>buba-release</id>
    3. <username>yjt</username>
    4. <password>123456</password>
    5. </server>
    6. <server>
    7. <id>buba-snapshot</id>
    8. <username>yjt</username>
    9. <password>123456</password>
    10. </server>

    修改idea中的POM文件

    在Idea中POM文件中添加如下配置(这里的url,可以通过 Nexus 后台上仓库页面的 cpoy 按钮自动复制得到)

    1. <distributionManagement>
    2. <repository>
    3. <id>buba-release</id>
    4. <name>buba-release</name>
    5. <url>http://192.168.216.135:8081/repository/buba-release/</url>
    6. </repository>
    7. <snapshotRepository>
    8. <id>buba-snapshot</id>
    9. <name>buba-snapshot</name>
    10. <url>http://192.168.216.135:8081/repository/buba-snapshot/</url>
    11. </snapshotRepository>
    12. </distributionManagement>

    到现在我们基本都配置完成了,执行部署命令 mvn clean deploy 或者利用 IDE 的 部署插件进行发布,当控制台出现 BUILD SUCCESS ,说明发布成功。

    此时,可以在 Nexus 后台上仓库页面中查看我们发布的jar包 

  • 相关阅读:
    ETL管理工具(shell版本)
    Crony 一个基于Go语言实现的分布式定时任务管理平台
    文件系统,软硬链接
    运动想象 (MI) 分类学习系列 (16) :LMDA-Net
    记录QEMU上模拟ARM运行环境(内核 2.6.30)
    20221117 今天的世界发生了什么
    蓝桥杯-缩位求和
    PE 结构
    编码技巧——使用Easypoi导出Excel
    数据结构——优先队列c++详解
  • 原文地址:https://blog.csdn.net/qq_55629923/article/details/127998676