Hello World!

maven私服搭建-nexus

2015-03-31  本文已影响5267人  Avro

简述

来自官方的内容:see

Sonatype Nexus是世界领先的仓库管理系统,在世界范围内Nexus OSS,Nexus Pro或Nexus Pro CLM将近50000次安装。

Sonatype仓库管理私服主要有如下6个目的:

看我蹩脚的英语,建议还是看原文;如果你有好的建议,请留言,万分感谢。

说白了,Sonatype能为我们解决至少2+1个问题:

发行版本说明

简述

版本差异

图1<sup>[2]</sup>
图2<sup>[2]</sup>
图3<sup>[2]</sup>
图4<sup>[2]</sup>

安装

下载和解压

基本的安装还是比较简单的,这里仅是安全,不提供其他的权限和安全相关配置说明。
下载地址,下载完成后解压,解压后目录列表如下图:

目录列表
其中sonatype-work这个目录可以删除,其中仅包含README.txt和空目录nexus。
README.txt文件内容如下:

This is the default work folder used for Sonatype Applications. The location of the individual work folders may be overridden using environment variables. For example, the Nexus work location can be defined with PLEXUS_NEXUS_WORK. If it is not defined, then this default is used. Make sure the applications have read+write permissions to this folder.
大概意思: 这是Sonatype应用程序默认使用的工作文件,如果你使用PLEXUS_NEXUS_WORK环境变量定义单独的路径,应用程序工作文件夹将被该环境变量定义的路径覆盖;如果没定义,那这个默认的文件夹将被使用。请确保sonatype应用对该文件夹有读写权限,特别是linux用户,使用root用户将无法直接启动,提示:

****************************************
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.
If you insist running as root, then set the environment variable RUN_AS_USER=root before running this script.```
主要是因为sonatype将自身的数据和索引都存储在该目录。

###启动
- 将解压后的内容拷贝至需要安装的目标目录,如("C:/Program Files"或“/usr/local”)
- 进入`nexus/bin`。
- 如果是非windows用户,执行`nexus start`,注意使用非root用户,同时确保` sonatype-work` 和 `nexus`目录具有**读写**权限( sonatype-work存储数据,nexus需要写入运行时日志)。
-如果是windows用户,通过cmd控制台运行`nexus.bat start`

### 体验
在浏览器中输入:`http://localhost:8081/nexus`。
>如果部署虚拟机中,请将localhost替换为其他物理机器或虚拟iji的IP地址。
对于非本机,如果是linux,请保证防火墙放行8081端口

### 修改配置
nexus的配置文件位于`[安装目录]/nexus/conf`下,浏览该目录:
![配置列表](http:https://img.haomeiwen.com/i50075/2924bb8421c61dd4.png)
> 恩,你猜得不错,nexus是以jetty为作为运行容器的。

打开nexus.properties文件内容,如下:
![Paste_Image.png](http:https://img.haomeiwen.com/i50075/5bb5bb41fe154993.png)
- application-port : nexus的监听端口
- application-host : nexus的监听ip地址,如果使用nginx或apache等其他http代理,可将该ip地址修改为localhost或127.0.01,增强安全性.
其他配置属性请参考官方网站(http://www.sonatype.org/nexus)。


## Refer to
[1][Sonatype Knowledge Base](https://support.sonatype.com/forums)
[2][官方版本差异比较](http://www.sonatype.com/nexus/try-compare-buy/compare)
上一篇 下一篇

猜你喜欢

热点阅读