欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

CentOS7 Nexus安装步骤详细介绍

程序员文章站 2022-03-06 09:37:17
centos7 nexus安装 centos7 download nexus安装下载nexus-2.11.2-03-bundle.tar.gz install...

centos7 nexus安装

centos7

download

nexus安装下载nexus-2.11.2-03-bundle.tar.gz

install

安装

上传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

<?xml version="1.0" encoding="utf-8"?>
<service>
    <short>nexus</short>
    <description>nexus oss</description>
    <portprotocol="tcp"port="9083"/>
</service>

修改防火墙设定

firewall-cmd --permanent --add-service=nexus
firewall-cmd --reload

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!