• Nexus 安装和配置
    • Nexus 安装
    • Nexus 配置
    • 本地开发的 jar 发布到 Nexus 上
    • 持续集成自动构建后发布到 Nexus 上
    • Nexus 手动更新索引文件
    • 资料

    Nexus 安装和配置

    Nexus 安装

    • Nexus 安装

      • 官网:http://www.sonatype.org/nexus/
      • 官网下载:http://www.sonatype.org/nexus/archived/
      • 此时(20160207) Nexus 最新版本为:2.12.0-01
      • JDK 要求是 JDK 7,官网要求 7u6 或之后版本,包括 JDK 8
      • 官网帮助说明 1:http://books.sonatype.com/nexus-book/2.11/reference/install.html
      • 官网帮助说明 2:http://books.sonatype.com/sonatype-clm-book/html/clm-book/installation-configuration.html
      • 我个人习惯 /opt 目录下创建一个目录 setups 用来存放各种软件安装包;在 /usr 目录下创建一个 program 用来存放各种解压后的软件包,下面的讲解也都是基于此习惯
      • 我个人已经使用了第三方源:EPEL、RepoForge,如果你出现 yum install XXXXX 安装不成功的话,很有可能就是你没有相关源,请查看我对源设置的文章
      • 压缩包下载(由于国内网络的原因不排除你下载不了):wget http://download.sonatype.com/nexus/oss/nexus-2.12.0-01-bundle.tar.gz
      • 如果地址下载不了,那是因为你需要开 VPN,你也可以选择降低要求下载 2.11.4-01 版本:http://pan.baidu.com/s/1mgSNJtA

        • 解压压缩包:tar zxvf nexus-2.11.4-01-bundle.tar.gz
          • 解压出来有两个文件夹:
          • 这是程序目录:nexus-2.11.4-01
          • 这是仓库目录:sonatype-work
        • 移到目录到我的安装目录下:mv nexus-2.11.4-01/ /usr/program/
        • 进入安装目录:cd /usr/program/
        • 把目录名字改为更好看点:mv nexus-2.11.4-01/ nexus2.11.4/
        • 编辑系统配置文件:vim /etc/profile
        • 在文件的尾巴增加下面内容:

          1. # Nexus
          2. NEXUS_HOME=/usr/program/nexus2.11.4
          3. export NEXUS_HOME
          4. RUN_AS_USER=root
          5. export RUN_AS_USER
        • 刷新配置:source /etc/profile

        • 由于目录 sonatype-work 以后是做仓库用的,会存储很多 jar,所以这个目录一定要放在磁盘空间大的区内,目前我们还没第一次启动 Nexus,所以这里还是空文件
          • 我个人习惯把这类目录放在 /opt 下,所以你要特别注意,下面有内容对这个文件夹进行操作的都是基于 opt 目录的:mv /opt/setup/sonatype-work/ /opt/
          • 设置配置文件:vim /usr/program/nexus2.11.4/conf/nexus.properties
            • 把文件中该值:nexus-work=${bundleBasedir}/../sonatype-work/nexus
            • 改为:nexus-work=/opt/sonatype-work/nexus
        • 默认情况下如果你的 JDK 等系统变量设置好的是无需编辑 Nexus 的配置文件,但是这里还是给大家一下配置文件路径:vim /usr/program/nexus2.11.4/bin/jsw/conf/wrapper.conf
        • 开放防火墙端口:
          • 添加规则:sudo iptables -I INPUT -p tcp -m tcp --dport 8081 -j ACCEPT
          • 保存规则:sudo /etc/rc.d/init.d/iptables save
          • 重启 iptables:sudo service iptables restart
      • 测试安装结果:
        • 启动 Nexus:/usr/program/nexus2.11.4/bin/nexus start
        • 查看启动日志:tail -200f /usr/program/nexus2.11.4/logs/wrapper.log
        • 关闭 Nexus:/usr/program/nexus2.11.4/bin/nexus stop
        • 访问:http://192.168.0.110:8081/nexus
        • 登录账号密码:
          • 账号密码:admin
          • 密码:admin123

    Nexus 配置

    • 修改默认端口:vim /usr/program/nexus2.11.4/conf/nexus.properties,修改该值:application-port=8081
    • 下载远程中央库的索引到服务器
      • Nexus 配置
      • 如上图标注 4 所示,把默认是 False 改为 True
      • Nexus 配置
      • 如上图 gif 所示,创建任务开始进行索引下载。需要特别提醒的是,如果你的私服是虚拟机,那得保证你分配的硬盘足够大,别像我一样吝啬只给 10 G(现在还剩下 1.9 G),结果报:设备上没有空间
    • 项目上配置链接连接私服(下面内容涉及到 maven 的基础知识,请自行私下学习):
      • 对项目独立设置:
        • 打开项目的 pom.xml 文件:
        • 添加下面内容:
          1. <repositories>
          2. <repository>
          3. <id>Nexus</id>
          4. <name>虚拟机-192.168.0.110-Nexus</name>
          5. <url>http://192.168.0.110:8081/nexus/content/groups/public/</url>
          6. </repository>
          7. </repositories>
      • 对全局配置进行设置:
        • 打开 maven 的 settings.xml 文件:
        • 添加下面内容:
          1. <mirrors>
          2. <mirror>
          3. <id>YouMeekNexus</id>
          4. <name>YouMeek Nexus</name>
          5. <mirrorOf>*</mirrorOf>
          6. <url>http://192.168.0.110:8081/nexus/content/groups/public/</url>
          7. </mirror>
          8. </mirrors>

    本地开发的 jar 发布到 Nexus 上

    • 系统下的 settings.xml 下改为如下:
    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    5. <localRepository>D:\maven\my_local_repository</localRepository>
    6. <pluginGroups>
    7. </pluginGroups>
    8. <proxies>
    9. </proxies>
    10. <!--设置 Nexus 认证信息-->
    11. <servers>
    12. <server>
    13. <id>nexus-releases</id>
    14. <username>admin</username>
    15. <password>admin123</password>
    16. </server>
    17. <server>
    18. <id>nexus-snapshots</id>
    19. <username>admin</username>
    20. <password>admin123</password>
    21. </server>
    22. </servers>
    23. <!--设置 Nexus 镜像,后面只要本地没对应的以来,则到 Nexus 去找-->
    24. <mirrors>
    25. <mirror>
    26. <id>nexus-releases</id>
    27. <mirrorOf>*</mirrorOf>
    28. <url>http://192.168.1.73:8081/repository/maven-releases/</url>
    29. </mirror>
    30. <mirror>
    31. <id>nexus-snapshots</id>
    32. <mirrorOf>*</mirrorOf>
    33. <url>http://192.168.1.73:8081/repository/maven-snapshots/</url>
    34. </mirror>
    35. <mirror>
    36. <id>aliyun-maven</id>
    37. <name>aliyun maven</name>
    38. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    39. <mirrorOf>central</mirrorOf>
    40. </mirror>
    41. </mirrors>
    42. <profiles>
    43. <profile>
    44. <id>nexus</id>
    45. <repositories>
    46. <repository>
    47. <id>nexus-releases</id>
    48. <url>http://nexus-releases</url>
    49. <releases>
    50. <enabled>true</enabled>
    51. </releases>
    52. <snapshots>
    53. <enabled>true</enabled>
    54. </snapshots>
    55. </repository>
    56. <repository>
    57. <id>nexus-snapshots</id>
    58. <url>http://nexus-snapshots</url>
    59. <releases>
    60. <enabled>true</enabled>
    61. </releases>
    62. <snapshots>
    63. <enabled>true</enabled>
    64. </snapshots>
    65. </repository>
    66. </repositories>
    67. <pluginRepositories>
    68. <pluginRepository>
    69. <id>nexus-releases</id>
    70. <url>http://nexus-releases</url>
    71. <releases>
    72. <enabled>true</enabled>
    73. </releases>
    74. <snapshots>
    75. <enabled>true</enabled>
    76. </snapshots>
    77. </pluginRepository>
    78. <pluginRepository>
    79. <id>nexus-snapshots</id>
    80. <url>http://nexus-snapshots</url>
    81. <releases>
    82. <enabled>true</enabled>
    83. </releases>
    84. <snapshots>
    85. <enabled>true</enabled>
    86. </snapshots>
    87. </pluginRepository>
    88. </pluginRepositories>
    89. </profile>
    90. </profiles>
    91. <activeProfiles>
    92. <activeProfile>nexus</activeProfile>
    93. </activeProfiles>
    94. </settings>
    • 在开发的项目 pom.xml 上,添加这一段:
    1. <distributionManagement>
    2. <repository>
    3. <id>nexus-releases</id>
    4. <url>http://192.168.1.73:8081/repository/maven-releases/</url>
    5. </repository>
    6. <snapshotRepository>
    7. <id>nexus-snapshots</id>
    8. <url>http://192.168.1.73:8081/repository/maven-snapshots/</url>
    9. </snapshotRepository>
    10. </distributionManagement>
    • 然后在项目上执行:mvn deploy

    持续集成自动构建后发布到 Nexus 上

    • 在 Maven 的 settings.xml 加上连接服务器信息:
    1. <!--设置私库认证信息,用户名和密码我就用默认的,如果你们有权限控制的需求可以创建对应的一些账号-->
    2. <servers>
    3. <server>
    4. <id>nexus-releases</id>
    5. <username>admin</username>
    6. <password>admin123</password>
    7. </server>
    8. <server>
    9. <id>nexus-snapshots</id>
    10. <username>admin</username>
    11. <password>admin123</password>
    12. </server>
    13. </servers>
    • 在项目的 pom.xml 文件加上:
    1. <!-- nexus-releases nexus-snapshots 与 Maven 的配置文件 settings.xml 中 server 下的 id 对应 -->
    2. <distributionManagement>
    3. <repository>
    4. <id>nexus-releases</id>
    5. <name>Nexus Releases Repository</name>
    6. <url>http://192.168.0.110:8081/nexus/content/repositories/releases/</url>
    7. </repository>
    8. <snapshotRepository>
    9. <id>nexus-snapshots</id>
    10. <name>Nexus Snapshots Repository</name>
    11. <url>http://192.168.0.110:8081/nexus/content/repositories/snapshots/</url>
    12. </snapshotRepository>
    13. </distributionManagement>

    Nexus 手动更新索引文件

    • 手动更新索引
      • 关闭 Nexus:/usr/program/nexus2.11.4/bin/nexus stop
      • 命令:cd /opt/sonatype-work/nexus/indexer/central-ctx
        • 删除里面默认的文件:rm -rf *
      • 访问官网索引:http://repo.maven.apache.org/maven2/.index/
        • 下载文件:nexus-maven-repository-index.gzwget http://repo.maven.apache.org/maven2/.index/nexus-maven-repository-index.gz
        • 下载文件:nexus-maven-repository-index.propertieswget http://repo.maven.apache.org/maven2/.index/nexus-maven-repository-index.properties
        • 下载索引解压工具:wget https://repo1.maven.org/maven2/org/apache/maven/indexer/indexer-cli/5.1.1/indexer-cli-5.1.1.jar
        • 执行解压命令(该命令执行需要4分钟左右):java -jar indexer-cli-5.1.0.jar -u nexus-maven-repository-index.gz -d ./
        • 删除解压前文件:rm -rf indexer-cli-5.1.0.jar nexus-maven-repository-index.gz nexus-maven-repository-index.properties
        • 重启服务:/usr/program/nexus2.11.4/bin/nexus start

    资料

    • http://www.cnblogs.com/leefreeman/p/4211530.html
    • http://www.itdadao.com/article/89071/
    • http://blog.zhaojunling.me/p/17
    • http://m.blog.csdn.net/article/details?id=49228873
    • http://mritd.me/2015/12/29/Nexus-2-11-CentOS%E6%90%AD%E5%BB%BA%E6%95%99%E7%A8%8B/
    • http://mritd.me/2015/12/28/Nexus-%E7%A7%81%E6%9C%8D%E4%BD%BF%E7%94%A8%E6%95%99%E7%A8%8B/
    • http://my.oschina.net/liangbo/blog/195739
    • http://www.mamicode.com/info-detail-1016489.html
    • http://blog.csdn.net/shawyeok/article/details/23564681
    • http://zyjustin9.iteye.com/blog/2017321