nexus 开机自启动

Posted 述而不做

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nexus 开机自启动相关的知识,希望对你有一定的参考价值。

一.创建shell服务脚本

         创建脚本nexus,并将脚本文件放在/etc/init.d 服务启动目录

#!/bin/bash    
#chkconfig:2345 20 90    
#description:nexus    
#processname:nexus    
export NEXUS_HOME=/opt/nexus/nexus-3.6/
case $1 in    
        start) su root $NEXUS_HOME/bin/nexus start;;    
        stop) su root $NEXUS_HOME/bin/nexus stop;;    
        status) su root $NEXUS_HOME/bin/nexus status;;    
        restart) su root $NEXUS_HOME/bin/nexus restart;;    
        dump ) su root $NEXUS_HOME/bin/nexus dump ;; 
        console ) su root $NEXUS_HOME/bin/nexus console ;;          
        *) echo "require console | start | stop | restart | status | dump " ;;    
esac

二.配置权限

chmod +x /opt/nexus/nexus-3.6/bin/nexus
chmod +x /etc/init.d/nexus

三. 让chkconfig 管理脚本

#添加服务
chkconfig --add nexus
#开机自启动
chkconfig nexus on

四.启动服务

service nexus start

 

以上是关于nexus 开机自启动的主要内容,如果未能解决你的问题,请参考以下文章

nexus快速引导是啥

Centos7 Nexus Maven 开机启动

nexus开机启动

nexus-2.14.4添加系统启动项

添加啥代码可以使vbs脚本开机自启动?

开机自启脚本