Nexus 在企业开发中还是比较常用的私有仓库管理工具,一般把公司内部的Maven jar 包或npm包上传到仓库中,有效的对包文件进行管理。

Nexus 至少需要 2G 以上的内存

  • 安装nexus之前首先安装配置好 JDK 环境 和 Maven环境
    1、Linux环境安装openJDK
    2、Centos7.3安装maven并配置加速镜像源
  • nexus官网下载地址:Download Archives - Repository Manager 3
  • 下载完后解压后有如下两个文件夹
  • nexus搭建maven私有仓库_nexus

  • 配置文件路径
/opt/nexus-3.56.0-01/etc/nexus-default.properties

nexus搭建maven私有仓库_nexus maven_02

  • 可以看到默认端口是 8081,默认访问的IP为 0.0.0.0 表示应用程序将绑定到所有可用的网络接口上,能够通过任何网络接口(包括本地网络和互联网)接收传入的连接请求
  • 在 bin 目录下:
#启动
./nexus start
#停止
./nexus stop
#查看状态
./nexus status
  • 启动的时候报了一个警告:
  • 这里显示的是不建议使用 root 用户来启动 nexus
  • 通过 IP:端口号 就能访问了,点击登录会提示默认密码的在哪个路径下, admin用户初始密码在如下路径
/opt/sonatype-work/nexus3/admin.password

nexus搭建maven私有仓库_maven_03

  • 登录后修改默认密码即可