一、下载安装nexus3.x
Nexus下载地址:http://www.sonatype.org/nexus/archived/#step2top
# 解压
tar -zxvf nexus-3.12.0-01-unix.tar.gz
# 编辑配置
vi /zd/nexus2.11.3/nexus-2.11.3-01/conf/nexus.properties
## DO NOT EDIT - CUSTOMIZATIONS BELONG IN $data- dir/etc/nexus.properties
##
# Jetty section
application-port=8081
application-host=0.0.0.0
nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty- requestlog.xml
nexus-context-path=/
# Nexus section
nexus-edition=nexus-pro-edition
nexus-features=\
nexus-pro-feature
# 启动
/nexus start
访问地址:192.168.8.128:8081/nexus
二、数据迁移
备份需要迁移的服务器数据,找到目录直接打包
cd /usr/local/sonatype-work
tar -czf nexus3_20200323.gz nexus3
下载压缩后的文件,上传至新服务器到sonatype-work目录
tar -zxvf neuxs3.gz
重启nexus3服务
/nexus start
网友评论