您的位置:

nexus3使用详解

一、nexus3安装

首先我们需要准备一个CentOS服务器,并且具备root权限。

1、下载nexus3安装包


wget https://download.sonatype.com/nexus/3/nexus-3.35.0-03-unix.tar.gz

2、解压安装包


tar -zxvf nexus-3.35.0-03-unix.tar.gz -C /opt/

3、修改nexus配置文件


cd /opt/nexus-3.35.0-03/etc/

vim nexus.properties

# 修改以下配置项

# 端口
application-port=8081
nexus-edition=nexus-pro-edition
nexus-edition-subscription-status-url=https://support.sonatype.com/subscription/rest/v1/status
nexus-url=https://your-nexus-domain:8081/

# 保存退出
:wq

4、启动nexus


cd /opt/nexus-3.35.0-03/bin/

./nexus start

5、访问nexus

在浏览器中输入http://服务器ip地址:8081,即可访问到nexus

二、nexus3仓库管理

1、创建maven仓库

在nexus中创建maven仓库,用于存放我们自己的应用程序jar包

步骤如下:

在nexus界面中点击左侧“Repositories”,然后点击右上角“Create repository”按钮,选择“Maven2(hosted)”

填写相应的信息,最后点击“Create repository”按钮即可

2、上传jar包到仓库

在nexus界面中点击左侧“Components”,然后点击右上角“Upload component”按钮,选择要上传的jar包即可

3、使用nexus管理自己的maven仓库

在项目的pom.xml中增加以下配置,让maven使用nexus中的仓库


<repositories>
  <repository>
    <id>nexus</id>
    <url>http://server:8081/repository/maven-public/</url>
  </repository>
</repositories>

三、nexus3安全管理

1、设置管理员账号密码

在nexus界面中点击左侧“Security”,然后点击右侧“Users”

选择“admin”,在编辑页面中修改密码即可

2、创建用户组

在nexus界面中点击左侧“Security”,然后点击右侧“Roles”

选择“Create Role”,填写相应的信息,然后添加需要该组权限的用户

3、设置maven仓库访问权限

在nexus界面中点击左侧“Repositories”,选择相应的仓库

在下方“Repository target”窗口中选择“Security”选项卡

增加需要访问该仓库的用户组即可

四、nexus3仓库代理

1、创建代理仓库

在nexus界面中点击左侧“Repositories”,点击右上角“Create Repository”,选择“Maven2(proxy)”

填写相应信息,选择需要代理的远程仓库

2、使用代理仓库

在项目的pom.xml中增加以下配置,让maven使用代理仓库


<repositories>
  <repository>
    <id>nexus</id>
    <url>http://server:8081/repository/maven-public/</url>
  </repository>
</repositories>

在nexus界面中选择左侧“Repositories”,点击右侧“Rebuild index”,等待nexus重新索引远程代理仓库即可

五、nexus3仓库部署

1、创建docker仓库

在nexus界面中点击左侧“Repositories”,选择“Create Repository”

选择“Docker(hosted)”,填写相应的信息即可

2、推送docker镜像到仓库


# 登录到nexus仓库
docker login --username=admin --password=123456 registry.nexus.com:8081

# 构建docker镜像,并命名为registry.nexus.com:8081/myimage:1.0
docker build -t registry.nexus.com:8081/myimage:1.0 .

# 推送镜像到nexus仓库
docker push registry.nexus.com:8081/myimage:1.0

3、使用部署的docker镜像

在其他机器上使用该镜像时,需要在该机器上登录nexus仓库并拉取相应的镜像


docker login --username=admin --password=123456 registry.nexus.com:8081

docker pull registry.nexus.com:8081/myimage:1.0
以上是nexus3使用的基本内容,希望对您有所帮助。