Web笔记-Nexus私服搭建

下载

nexus-3.0.0-01-mac.tgz

环境配置
  1. 将解压后的nexus-3.3.0-01-mac包复制到资源库(Library)目录
  2. 编辑nexus-3.3.0-01/etc/nexus-default.properties,使用记事本打开,修改主机地址和端口以及context-path
## DO NOT EDIT - CUSTOMIZATIONS BELONG IN $data-dir/etc/nexus.properties
##
# Jetty section
application-port=8081
application-host=127.0.0.1
nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-requestlog.xml
nexus-context-path=/nexus
# Nexus section
nexus-edition=nexus-pro-edition
nexus-features=\
 nexus-pro-feature
  1. 使用终端编辑.bash_profile
    aopengfeideMacBook-Pro:~ gaopengfei$ sudo vim ~/.bash_profile
  2. 添加如下环境变量,esc退出,:wq保存退出
NEXUS_HOME=/Users/gaopengfei/Library/nexus-3.3.0-01-mac/nexus-3.3.0-01
export NEXUS_HOME
export PATH=$PATH:$NEXUS_HOME/bin
  1. 刷新立即生效
    gaopengfeideMacBook-Pro:~ gaopengfei$ source .bash_profile
  2. 开启服务
    gaopengfeideMacBook-Pro:~ gaopengfei$ nexus start
Web笔记-Nexus私服搭建_第1张图片
开启服务
  1. 浏览器打开nexus管理系统
Web笔记-Nexus私服搭建_第2张图片
nexus管理系统
  1. Nexus Repository Manager配置使用(待完善...)
    nexus默认账户:admin admin123登录

你可能感兴趣的:(Web笔记-Nexus私服搭建)