linux-tutorial/docs/linux/soft/nexus-ops.md

268 lines
8.4 KiB
Markdown
Raw Normal View History

2019-08-19 19:19:57 +08:00
# Nexus 运维
2019-05-10 18:35:33 +08:00
2019-08-19 19:19:57 +08:00
> Nexus 是一个强大的 Maven 仓库管理器,可以用来搭建 Maven 私服。
>
2019-05-10 18:35:33 +08:00
> 关键词maven, nexus
>
> 部署环境
>
> - Nexus 3.13.0
> - JDK 1.8
> - Maven 3.5.4
<!-- TOC depthFrom:2 depthTo:3 -->
2019-08-19 19:19:57 +08:00
- [安装 Nexus](#安装-nexus)
- [启动/停止 Nexus](#启动停止-nexus)
- [使用 Nexus 搭建 Maven 私服](#使用-nexus-搭建-maven-私服)
- [配置仓库](#配置仓库)
2019-05-10 18:35:33 +08:00
- [配置 settings.xml](#配置-settingsxml)
- [配置 pom.xml](#配置-pomxml)
- [执行 maven 构建](#执行-maven-构建)
2019-08-19 19:19:57 +08:00
- [将 Nexus 设置为服务](#将-nexus-设置为服务)
- [Nexus 备份和迁移](#nexus-备份和迁移)
- [备份](#备份)
- [迁移](#迁移)
2019-05-10 18:35:33 +08:00
- [参考资料](#参考资料)
<!-- /TOC -->
2019-08-19 19:19:57 +08:00
## 安装 Nexus
2019-05-10 18:35:33 +08:00
进入[官方下载地址](https://www.sonatype.com/download-oss-sonatype),选择合适版本下载。
2019-08-20 18:42:40 +08:00
<div align="center"><img src="http://dunwu.test.upcdn.net/snap/20181127203029.png!zp"/></div>
2019-05-10 18:35:33 +08:00
本人希望将 Nexus 部署在 Linux 机器,所以选用的是 Unix 版本。
这里,如果想通过命令方式直接下载(比如用脚本安装),可以在[官方历史发布版本页面](https://help.sonatype.com/repomanager3/download/download-archives---repository-manager-3)中找到合适版本,然后执行以下命令:
```sh
wget -O /opt/maven/nexus-unix.tar.gz http://download.sonatype.com/nexus/3/nexus-3.13.0-01-unix.tar.gz
tar -zxf nexus-unix.tar.gz
```
解压后,有两个目录:
- nexus-3.13.0-01 - 包含了 Nexus 运行所需要的文件。是 Nexus 运行必须的。
- sonatype-work - 包含了 Nexus 生成的配置文件、日志文件、仓库文件等。当我们需要备份 Nexus 的时候默认备份此目录即可。
2019-08-19 19:19:57 +08:00
## 启动/停止 Nexus
2019-05-10 18:35:33 +08:00
进入 nexus-3.13.0-01/bin 目录,有一个可执行脚本 nexus。
执行 `./nexus`,可以查看允许执行的参数,如下所示,含义可谓一目了然:
```sh
$ ./nexus
Usage: ./nexus {start|stop|run|run-redirect|status|restart|force-reload}
```
- 启动 nexus - `./nexus start`
2019-08-19 19:19:57 +08:00
- 停止 nexus - `./nexus stop`
- 重启 nexus - `./nexus restart`
2019-05-10 18:35:33 +08:00
启动成功后,在浏览器中访问 `http://<ip>:8081`,欢迎页面如下图所示:
2019-08-20 18:42:40 +08:00
<div align="center"><img src="http://dunwu.test.upcdn.net/snap/20181127203131.png!zp"/></div>
2019-05-10 18:35:33 +08:00
点击右上角 Sign in 登录,默认用户名/密码为admin/admin123。
2019-08-19 19:19:57 +08:00
## 使用 Nexus 搭建 Maven 私服
2019-05-10 18:35:33 +08:00
2019-08-19 19:19:57 +08:00
### 配置仓库
2019-05-10 18:35:33 +08:00
2019-08-19 19:19:57 +08:00
Nexus 中的仓库有以下类型:
2019-05-10 18:35:33 +08:00
2019-08-19 19:19:57 +08:00
- `hosted` - 宿主仓库。主要用于部署无法从公共仓库获取的构件(如 oracle 的 JDBC 驱动)以及自己或第三方的项目构件;
- `proxy` - 代理仓库。代理公共的远程仓库;
- `virtual` - 虚拟仓库。用于适配 Maven 1
- `group` - 仓库组。Nexus 通过仓库组的概念统一管理多个仓库,这样我们在项目中直接请求仓库组即可请求到仓库组管理的多个仓库。
2019-05-10 18:35:33 +08:00
2019-08-21 13:23:30 +08:00
<div align="center"><img src="http://dunwu.test.upcdn.net/cs/java/javalib/maven/nexus.png!zp"/></div>
2019-08-19 19:19:57 +08:00
> **最佳实践**
>
> 建议配置如下:
>
> - hosted 仓库
> - maven-releases - 存储私有仓库的发行版 jar 包
> - maven-snapshots - 存储私有仓库的快照版(调试版本) jar 包
> - proxy 仓库
> - maven-central - maven 中央库(如果没有配置 mirror默认就从这里下载 jar 包),从 https://repo1.maven.org/maven2/ 获取资源
> - maven-aliyun - 国内 maven 仓库,提高访问速度。
> - group 仓库
> - maven-public - 私有仓库的公共空间,把上面三个仓库组合在一起对外提供服务,在本地 maven 基础配置 settings.xml 中使用。
2019-08-20 18:42:40 +08:00
<div align="center"><img src="http://dunwu.test.upcdn.net/snap/20181127203156.png!zp"/></div>
2019-05-10 18:35:33 +08:00
### 配置 settings.xml
2019-08-19 19:19:57 +08:00
如果要使用 Nexus还必须在 settings.xml 和 pom.xml 中配置认证信息。
2019-05-10 18:35:33 +08:00
一份完整的 `settings.xml`
```xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<pluginGroups>
<pluginGroup>org.sonatype.plugins</pluginGroup>
</pluginGroups>
<!-- Maven 私服账号信息 -->
<servers>
<server>
<id>releases</id>
<username>admin</username>
<password>admin123</password>
</server>
<server>
<id>snapshots</id>
<username>admin</username>
<password>admin123</password>
</server>
</servers>
<!-- jar 包下载地址 -->
<mirrors>
<mirror>
<id>public</id>
<mirrorOf>*</mirrorOf>
<url>http://10.255.255.224:8081/repository/maven-public/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>zp</id>
<repositories>
<repository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<url>http://central</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>zp</activeProfile>
</activeProfiles>
</settings>
```
### 配置 pom.xml
在 pom.xml 中添加如下配置:
```xml
<distributionManagement>
<repository>
<id>releases</id>
<name>Releases</name>
<url>http://10.255.255.224:8081/repository/maven-releases</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Snapshot</name>
<url>http://10.255.255.224:8081/repository/maven-snapshots</url>
</snapshotRepository>
</distributionManagement>
```
2019-10-24 18:13:48 +08:00
> 🔔 注意:
2019-05-10 18:35:33 +08:00
>
> - `<repository>` 和 `<snapshotRepository>` 的 id 必须和 `settings.xml` 配置文件中的 `<server>` 标签中的 id 匹配。
> - `<url>` 标签的地址需要和 maven 私服的地址匹配。
### 执行 maven 构建
如果要使用 settings.xml 中的私服配置,必须通过指定 `-P zp` 来激活 profile。
示例:
```sh
# 编译并打包 maven 项目
$ mvn clean package -Dmaven.skip.test=true -P zp
# 编译并上传 maven 交付件jar 包)
$ mvn clean deploy -Dmaven.skip.test=true -P zp
```
2019-08-19 19:19:57 +08:00
## 将 Nexus 设置为服务
将 Nexus 添加为服务,以便开机自启动。
`/lib/systemd/system` 目录下创建 `nexus.service` 文件,内容如下:
```ini
[Unit]
Description=nexus
After=network.target
[Service]
Type=forking
LimitNOFILE=65536 #警告处理
Environment=RUN_AS_USER=root
ExecStart=/opt/maven/nexus-3.13.0-01/bin/nexus start
ExecReload=/opt/maven/nexus-3.13.0-01/bin/nexus restart
ExecStop=/opt/maven/nexus-3.13.0-01/bin/nexus stop
Restart=on-failure
PrivateTmp=true
[Install]
WantedBy=multi-user.target
```
保存后,可以使用以下命令应用 nexus 服务:
- `systemctl enable nexus` - 启动 nexus 开机启动
- `systemctl disable nexus` - 关闭 nexus 开机启动
- `systemctl start nexus` - 启动 nexus 服务
- `systemctl stop nexus` - 停止 nexus 服务
- `systemctl restart nexus` - 重启 nexus 服务
## Nexus 备份和迁移
Nexus 三个重要目录:
| 名称 | 目录名 | 重要配置文件 |
| :----------------- | :------------- | :------------------------------------------------ |
| nexus 主目录 | nexus-2.6.4-02 | conf/nexus.properties 里面有 sonatype-work 的地址 |
| sonatype-work 目录 | sonatype-work | nexus/conf/nexus.xml 里面有 storage 的地址 |
| storage 目录 | storage | 里面主要是各种程序的 jar 包等 |
### 备份
Nexus 的数据都存储在 sonatype-work 目录,备份 Nexus 数据只需要将其打包即可。
### 迁移
将原 Nexus 服务器中的 sonatype-work 目录迁移到新 Nexus 服务器的 sonatype-work 目录下。
2019-05-10 18:35:33 +08:00
## 参考资料
2019-08-19 19:19:57 +08:00
- [maven 私库 nexus3 安装及使用](https://blog.csdn.net/clj198606061111/article/details/52200928)
- [Nexus 安装 使用说明](https://www.cnblogs.com/jtlgb/p/7473837.html)
- [企业级开源仓库 nexus3 实战应用–使用 nexus3 配置 yum 私有仓库](http://www.eryajf.net/2002.html)