Ubuntu server下搭建Maven私服Nexus
1、下载
通过root用户进去Ubuntu server
$ cd /opt
$ wget http://download.sonatype.com/nexus/oss/nexus-2.10.0-02-bundle.tar.gz
2、启动
环境准备,启动nexus,必须先完成JDK环境的配置。
$ cd /opt/
$ tar -zxvf nexus-2.10.0-02-bundle.tar.gz
$ cd /opt/nexus-2.10.0-02/bin
$ vi nexus
在启动文件nexus中增加nexus的启动用户,否则没权限启动,将报错如下:
WARNING - NOT RECOMMENDED TO RUN AS ROOT
If you insist running as root, then set the environment variable RUN_AS_USER=root before running this script
所以要解决此问题,需要在启动文件nexus,加上RUN_AS_USER=root,如图所示
保存退出之后,即可启动nexus,命令如下:
$ ./nexus start
Starting Nexus OSS...
Started Nexus OSS.
表示启动成功,访问地址:http://ip:8081/nexus
3、配置nexus
登录nexus,右上角Log In,默认登录用户名密码:admin/admin123
登录之后,我们可以点击左边菜单栏Repositories进入详细配置
可以自己重新创建一个私服配置,这里我们用系统在带的Public Repositories
关于仓库的类型介绍
hosted 类型的仓库,内部项目的发布仓库
releases 内部的模块中release模块的发布仓库
snapshots 发布内部的SNAPSHOT模块的仓库
3rd party 第三方依赖的仓库,这个数据通常是由内部人员自行下载之后发布上去
proxy 类型的仓库,从远程中央仓库中寻找数据的仓库
group 类型的仓库,组仓库用来方便我们开发人员进行设置的仓库
但是需要将其他几个代理的库配置映射到Public中,分别将Apache Snapshots、Central、Codehaus Sanpshots下Download Remote Indexes选项选择【true】,保存即可,默认是false,如下图
把将类型为Proxy的库Apache Snapshots、Central、Codehaus Sanpshots配置到Public Repositories下,如下图:
然后分别将Apache Snapshots、Central、Codehaus Sanpshots更新Index,在每一个库上面右键操作Repair Index
最后将Public Repositories操作Repair Index
然后接可以测试maven仓库了。
4、远程测试maven仓库
通常我们是修改本地的maven安装目录下的配置文件setting.xml,将本地仓库更换成私服仓库地址,保证本客户端上所有的项目都将使用私服,配置setting.xml如下:在<profiles></profiles>加入
<profile> <id>env-dev</id> <repositories> <repository> <id>nexus</id> <name>nexus Repositories</name> <url>http://192.168.10.50:8081/nexus/content/groups/public</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <!--插件本地仓库--> <pluginRepositories> <pluginRepository> <id>nexus</id> <url>http://192.168.10.50:8081/nexus/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile>
并在</profiles>之后中加入激活
<activeProfiles> <activeProfile>env-dev</activeProfile> </activeProfiles>
如果 构建的项目需发布项目到私有库,在setting.xml配置发布的账户
<servers> <server> <id>nexus-releases</id> <username>deployment</username> <password>deployment123</password> </server> <server> <id>nexus-snapshots</id> <username>deployment</username> <password>deployment123</password> </server> </servers>
在项目中,则需要项目的pom.xml文件中添加如下,项目中id需和server中id一致:
<distributionManagement> <repository> <id>nexus-releases</id> <name>Nexus Release Repository </name> <url> http://192.168.10.50:8081/nexus/content/repositories/releases/ </url> </repository> <snapshotRepository> <id>nexus-snapshots</id> <name>Nexus Snapshot Repository</name> <url> http://192.168.10.50:8081/nexus/content/repositories/snapshots/ </url> </snapshotRepository> </distributionManagement>
然后执行maven clean deploy,检测是否发布成功~在私服上,通过左边的Artifact Search 搜索窗口,查看jar包是否在私服下。
5、三方jar包入maven私服
比如 有些第三方jar包,在maven中心仓库没有,这个时候就需要手动在本地将jar上传上去,以供本地其他用户使用,简单截图介绍
6.安装nexus为service
以root用户身份,设置为系统服务
cd /etc/init.d
cp /usr/local/nexus/bin /nexus ./nexus
chmod 755 /etc/init.d/nexus
在Red Hat, Fedora, and CentOS中增加nexus服务
$ cd /etc/init.d
增加nexus服务
$ chkconfig --add nexus
添加运行级别3、4、5
$ chkconfig --levels 345 nexus on
启动nexus
$ service nexus start
验证关系成功启动
$ tail -f /usr/local/nexus/logs/wrapper.log
编辑/etc/init.d/nexus的文本
NEXUS_HOME="/usr/local/nexus"
PIDDIR="${NEXUS_HOME}"
RUN_AS_USER = "nexus"
7.镜像配置
如果仓库X可以提供仓库Y存储的所有内容,那么就可以认为X是Y的一个镜像。换句话说,任何一个可以从仓库Y获得的构件,都胡够从它的镜像中获取。举个例子,http://maven.net.cn/content/groups/public/ 是中央仓库http://repo1.maven.org/maven2/ 在中国的镜像,由于地理位置的因素,该镜像往往能够提供比中央仓库更快的务。因此,可以配置Maven使用该镜像来替代中央仓库。编辑settings.xml,代码如下:
<settings> ... <mirrors> <mirror> <id>maven.net.cn</id> <name>one of the central mirrors in china</name> <url>http://maven.net.cn/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> ... </settings>该例中,<mirrorOf>的值为central,表示该配置为中央仓库的镜像,任何对于中央仓库的请求都会转至该镜像,用户也可以使用同样的方法配置其他仓库的镜像。另外三个元素id,name,url与一般仓库配置无异,表示该镜像仓库的唯一标识符、名称以及地址。类似地,如果该镜像需认证,也可以基于该id配置仓库认证。
<settings> ... <mirrors> <mirror> <id>central</id> <name>Internal Repository Manager</name> <url>http://192.168.10.50:8081/nexus/content/groups/public</url> <mirrorOf>*</mirrorOf> </mirror> </mirrors> ... </settings>该例中<mirrorOf>的值为星号,表示该配置是所有Maven仓库的镜像,任何对于远程仓库的请求都会被转至http://192.168.10.50:8081/nexus/content/groups/public。如果该镜像仓库需要认证,则配置一个Id为internal-repository的<server>即可。为了满足一些复杂的需求,Maven还支持更高级的镜像配置:
转载:http://www.cnblogs.com/candle806/p/4076325.html