当前位置:   article > 正文

CentOS7 安装 Nexus_centos启动nexus

centos启动nexus

目录

1. 安装启动Nexus

1.1 安装

1.2 启动 nexus

1.3 其他命令

2. 配置Nexus

1. 使用admin账户登录 , 然后点击齿轮(Configuration) > Repositories(仓库)

2. 配置ali的maven镜像,提高速度 (代理库)

3. 在group中加入ali镜像

4. 私有仓库(hosted)不用创建 , 使用原有的 maven-releases 和 maven-snapshots即可

3. 配置Maven客户端和pom.xml实现发布

1. 配置setting.xml

2. pom.xml配置


资源下载:评论区留下联系邮箱,阿里网盘暂不支持分享。
注意:安装nexus前,需要安装JDK

1. 安装启动Nexus

1.1 安装

1) 在usr/local目录下创建mysql安装目录:

  1. cd /usr/local
  2. mkdir soft/nexus

2) 将资源放在nexus文件下

3) 解压nexus文件

tar zxvf nexus-3.9.0-01-unix.tar.gz

4) 配置 nexus 环境变量

打开 etc/ 目录下的 profile 文件,命令如下

vim /etc/profile

把 nuxus 环境添加到 profile 尾部,环境代码如下

  1. # nexus
  2. export MAVEN_HOME=/usr/local/soft/nexus/nexus-3.9.0-01
  3. export PATH=$PATH:$MAVEN_HOME/bin

注:/usr/local/nexus/nexus-3.9.0-01 为nexus的安装路径

5) 重新加载配置文件,让配置生效

  1. # 重新加载profile文件,让配置生效
  2. source profile
  3. # 或者,这个命令在任何目录都可以操作
  4. source /etc/profile

1.2 启动 nexus

1) 进入 nexus 根目录下的 bin 目录,启动 nexus 服务

nexus start

2) 更改端口

  1. nexus 默认端口是 8081 , 如果我们的端口被占用了,则需要重新为 nexus 指定端口,端口的配置文件在安装目录下的 etc 目录
  2. 进入 etc 目录,找到 nexus-default.properties 文件
  3. 用 vim 打开 nexus-default.properties 文件

  1. # Jetty section
  2. application-port=8081
  3. application-host=0.0.0.0

改为

  1. # Jetty section
  2. application-port=8084
  3. application-host=0.0.0.0

这样我们就把 nexus 的端口从 8081 改为 8084 , 还需要重启 nexus服务

  1. # 重启服务
  2. nexus restart

3) 开启端口

  1. # 开启8084端口
  2. firewall-cmd --zone=public --add-port=8084/tcp --permanent
  3. # 重启
  4. firewall-cmd --reload

默认用户名/密码为 : admin/admin123

1.3 其他命令

  1. # 启动
  2. nexus start
  3. # 停止
  4. nexus stop
  5. # 重启
  6. nexus restart
  7. # 查看状态
  8. nexus status

2. 配置Nexus

1. 使用admin账户登录 , 然后点击齿轮(Configuration) > Repositories(仓库)

仓库有3类 , proxy(代理仓库-也就是别人的仓库) hosted(私有仓库 - 也就是自己的仓库) group(聚合仓库 - 一般引用都是使用这个库)

2. 配置ali的maven镜像,提高速度 (代理库)

阿里rep地址 : https://maven.aliyun.com/repository/public

1) 点击 Create repository

2) 选择maven2(proxy)

3) 点击 Create repository即可

3. 在group中加入ali镜像

找到maven-public的group仓库 , 点右边的>进入修改

在最下面 Group处 , 把ali的镜像加入

4. 私有仓库(hosted)不用创建 , 使用原有的 maven-releases 和 maven-snapshots即可

3. 配置Maven客户端和pom.xml实现发布

1. 配置setting.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. <!-- 配置本地jar包存放路径 -->
  6. <localRepository>D:/repository</localRepository>
  7. <pluginGroups></pluginGroups>
  8. <proxies></proxies>
  9. <servers>
  10. <!-- 配置从nexus私服下载jar包所需要的账号密码 -->
  11. <server>
  12. <id>nexus</id>
  13. <username>admin</username>
  14. <password>admin123</password>
  15. </server>
  16. <!-- 配置往nexus私服上传jar包所需要的账号密码 -->
  17. <server>
  18. <!--注意这个id 需要和pom.xml的对应-->
  19. <id>maven-releases</id>
  20. <username>admin</username>
  21. <password>admin123</password>
  22. </server>
  23. <!-- 配置往nexus私服上传jar包所需要的账号密码 -->
  24. <server>
  25. <!--注意这个id 需要和pom.xml的对应-->
  26. <id>maven-snapshots</id>
  27. <username>admin</username>
  28. <password>admin123</password>
  29. </server>
  30. </servers>
  31. <!-- 配置镜像代理 -->
  32. <mirrors>
  33. <mirror>
  34. <id>nexus</id>
  35. <mirrorOf>*</mirrorOf><!-- 配置为*的意思是将所有请求都转发到镜像仓库上 -->
  36. <url>http://172.16.150.132:8084/repository/maven-public/</url>
  37. </mirror>
  38. <!--这2个备用 以免在外网环境连不上私服-->
  39. <!-- <mirror>-->
  40. <!-- <id>alimaven</id>-->
  41. <!-- <mirrorOf>central</mirrorOf>-->
  42. <!-- <url>https://maven.aliyun.com/repository/public/</url>-->
  43. <!-- </mirror>-->
  44. <!-- <mirror>-->
  45. <!-- <id>alimaven_central</id>-->
  46. <!-- <mirrorOf>central</mirrorOf>-->
  47. <!-- <url>http://maven.aliyun.com/nexus/content/repositories/central/</url>-->
  48. <!-- </mirror>-->
  49. </mirrors>
  50. <profiles>
  51. <profile>
  52. <id>nexus</id>
  53. <!--Override the repository (and pluginRepository) "central" from the Maven Super POM
  54. to activate snapshots for both! -->
  55. <repositories>
  56. <repository>
  57. <id>central</id>
  58. <url>http://central</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>central</id>
  70. <url>http://central</url>
  71. <releases>
  72. <enabled>true</enabled>
  73. </releases>
  74. <snapshots>
  75. <enabled>true</enabled>
  76. </snapshots>
  77. </pluginRepository>
  78. </pluginRepositories>
  79. </profile>
  80. <profile>
  81. <id>jdk1.8</id>
  82. <activation>
  83. <activeByDefault>true</activeByDefault>
  84. <jdk>1.8</jdk>
  85. </activation>
  86. <properties>
  87. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  88. <maven.compiler.source>1.8</maven.compiler.source>
  89. <maven.compiler.target>1.8</maven.compiler.target>
  90. <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
  91. </properties>
  92. </profile>
  93. </profiles>
  94. <activeProfiles>
  95. <activeProfile>nexus</activeProfile>
  96. <activeProfile>jdk1.8</activeProfile>
  97. </activeProfiles>
  98. </settings>

2. pom.xml配置

在pom.xml中插入发布相关信息

  1. <!-- 配置私服上传jar包地址 -->
  2. <distributionManagement>
  3. <repository>
  4. <!-- release包上传地址 -->
  5. <id>maven-releases</id>
  6. <url>http://172.16.150.132:8084/repository/maven-releases/</url>
  7. </repository>
  8. <snapshotRepository>
  9. <!-- snapshots包上传地址 -->
  10. <id>maven-snapshots</id>
  11. <url>http://172.16.150.132:8084/repository/maven-snapshots/</url>
  12. </snapshotRepository>
  13. </distributionManagement>

完成 , 可直接通过deploy发布到私服

查看私服是否有上传文件

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/124706
推荐阅读
相关标签
  

闽ICP备14008679号