1、官网下载Nexus3:
https://help.sonatype.com/en/download.html
2、上传到服务器后解压:
tar -xf nexus-3.69.0-02-java8-unix.tar.gz
3、修改运行nexus配置
【1】修运行nexus所使用的用户:
vim /opt/nexus3/nexus-3.69.0-02/binexus.rc
#修改默认登陆用户为admin
#run_as_user=""
run_as_user="admin"
【2】修运行nexus所使用的JDK版本:
vim /opt/nexus3/nexus-3.69.0-02/bin/nexus #这里指定JDK安装的文件路径 寻找jdk安装路径: INSTALL4J_JAVA_HOME_OVERRIDE="/opt/java/jdk1.8.0_411" INSTALL4J_JAVA_PREFIX="" GREP_OPTIONS="" #将 run_as_root=true修改为false(这样可以使用root账号启动nexus)
【3】修运行nexus默认访问端口:
vim /opt/nexus3/nexus-3.69.0-02/etc/nexus-default.properties #默认端口即为8081,需要修改可改为其他端口 application-port=8081
【4】注册服务,开机自启
#添加软连接到启动项 ln -s /opt/nexus3/nexus-3.69.0-02/bin/nexus /etc/init.d/nexus #对nexus启动项进行授权和查看 cd /etc/init.d/ chkconfig --add nexus chkconfig --levels 345 nexus on chkconfig --list
【5】启动服务
service nexus start
【6】开启防火墙端口策略
#查看防火墙全部设置 firewall-cmd --list-all #若防火墙服务未启动可执行 systemctl start firewalld #设置nexus服务端口防火墙可访问 firewall-cmd --zone=public --add-port=8081/tcp --permanent #重新加载防火墙设置 firewall-cmd --reload #重新查看防火墙全部设置确认添加成功 firewall-cmd --list-all
【7】查看密码
默认账号为:admin #查看密码 cat /opt/nexus3/sonatype-work/nexus3/admin.password
标签:opt,02,nexus,nexus3,防火墙,--,Nexus3,镜像,docker From: https://www.cnblogs.com/teiperfly/p/18287987