标签:服务 环境 nexus仓库 res span t权限 http load docker
[root@server-04 ~]# docker pull docker.io/sonatype/nexus3
[root@server-04 ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE sonatype/nexus3 latest 8c3731492925 10 days ago 629MB
[root@server-04 ~]# docker run -id --privileged=true --name=nexus3 --restart=always -p 8081:8081 -v /lpg/nexus3/nexus-data:/var/nexus-data 8c3731492925
-id 创建守护式容器
--privileged=true 授予root权限(挂载多级目录必须为true,否则容器访问宿主机权限不足)
--name=名字 给你的容器起个名字
-p 宿主机端口:容器端口映射
-v 宿主机目录:容器目录 目录挂载
注意:
运行容器后访问主机+配置的宿主机映射端口无反应时,请稍等几分钟(视配置时间长短不一),等待nexus3完成初始化才能访问成功
通过查看日志可以看出是否启动成功:
[root@server-04 ~]# docker logs nexus3
默认用户名为admin,密码是一串字符串,首次登录会提示在服务器的具体某个位置,可以通过进入容器的方式访问密码所在地,拿到密码登录并更改默认密码。
访问容器方式:
[root@server-04 ~]# docker exec -it nexus3 /bin/bash bash-4.4$ cat /nexus-data/admin.password 79f3c39f-b707-4425-83a3-ef73632dee45
bash-4.4$
拷贝public仓库地址
配置到你本地maven的settings文件
注意:是public group仓库地址而不是releases或snapshots仓库,public默认包含了这两个仓库
<profiles>
<profile>
<id>dev</id>
<repositories>
<repository>
<id>local-nexus</id>
<url>http://ip:8081/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>dev</activeProfile>
</activeProfiles>
注意:id为私服中releases和snapshots仓库名,必须一致
<!-- servers
| This is a list of authentication profiles, keyed by the server-id used within the system.
| Authentication profiles can be used whenever maven must make a connection to a remote server.
|-->
<servers>
<server>
<id>maven-releases</id>
<username>admin</username>
<password>admin123</password>
</server>
<server>
<id>maven-snapshots</id>
<username>admin</username>
<password>admin123</password>
</server>
</servers>
在项目父pom文件中配置部署环境,注意id及URL必须与nexus仓库对应
<!--私服仓库-->
<distributionManagement>
<repository>
<id>maven-releases</id>
<name>Nexus Release Repository</name>
<url>http://ip:8081/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>maven-snapshots</id>
<name>Nexus Snapshot Repository</name>
<url>http://ip:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
重新打开项目,对需要的模块进行deploy
在nexus中查看上传的jar
标签:服务 环境 nexus仓库 res span t权限 http load docker
原文地址:https://www.cnblogs.com/liujunjun/p/14232832.html