maven私有服务器搭建之安装nexus

linux服务器安装nexus3.x版本:

前提条件:

Jdk1.8已经安装完毕

wget下载安装包:

wget https://sonatype-download.global.ssl.fastly.net/repository/repositoryManager/3/nexus-3.15.2-01-unix.tar.gz

解压安装包:

tar -zvxf nexus-3.15.2-01-unix.tar.gz

#解压的文件夹移到nexus(自动创建)

mv nexus-3.15.2-01/ /usr/local/nexus

 

#防火墙开启8081端口,该端口是nexus的默认端口(在/usr/local/nexus/etc/nexus-default.properties文件中)

vi  /etc/sysconfig/iptables

# 在打开的文件中加入如下内容

-A INPUT -p tcp -m state --state NEW -m tcp --dport 8081 -j ACCEPT

 

#启动(参考重启服务步骤)

./nexus run

 

参考文档:

https://yangshaoxiang.github.io/2017/04/11/maven私服nexus3.x搭建与使用/#more

你可能感兴趣的:(java,maven)