欢迎光临
我们一直在努力

CentOS7下Nexus安装步骤详细介绍

建站超值云服务器,限时71元/月

安装

上传RPM文件到/tmp目录下

mkdir /opt/nexus

cd /opt/nexus

tar -zxvf /tmp/nexus-2.11.2-03-bundle.tar.gz

ln -sf /opt/nexus/nexus-2.11.2-03/opt/nexus/latest

ln -sf /opt/nexus/latest /opt/nexus/default

新建用户

useradd -r nexus –shell /bin/false

chown -hR nexus:/opt/nexus

开机启动

新建/etc/init.d/nexus

#!/bin/sh

# chkconfig: – 80 20

# Description: Nexus OSS

NEXUS_HOME=/opt/nexus/default

RUN_AS_USER=nexus

JAVA_HOME=/usr/java/default

export NEXUS_HOME RUN_AS_USER JAVA_HOME

"$NEXUS_HOME/bin/nexus"\

$1

exit $?

赋予执行权限

chmod +x /etc/init.d/nexus

设定

/opt/nexus/default/conf/nexus.properties

application-port=9083

nexus-webapp-context-path=/

设置开机启动

chkconfig nexus on

防火墙

新建文件/usr/lib/firewalld/services/jenkins.xml

Nexus

Nexus OSS

修改防火墙设定

firewall-cmd –permanent –add-service=nexus

firewall-cmd –reload

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » CentOS7下Nexus安装步骤详细介绍
分享到: 更多 (0)