码迷,mamicode.com
首页 > 其他好文 > 详细

nexus开机启动

时间:2019-02-13 13:13:09      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:stat   etc   case   export   oca   desc   list   star   java_home   

在/etc/init.d目录下创建nexus文件

#!/bin/bash    
#chkconfig:2345 20 90    
#description:nexus3    
#processname:nexus3    
export JAVA_HOME=/usr/local/jdk  
case $1 in    
        start) su root /usr/local/nexus3/bin/nexus start;;    
        stop) su root /usr/local/nexus3/bin/nexus stop;;    
        status) su root /usr/local/nexus3/bin/nexus status;;    
        restart) su root /usr/local/nexus3/bin/nexus restart;;    
        dump ) su root /usr/local/nexus3/bin/nexus dump ;; 
        console ) su root /usr/local/nexus3/bin/nexus console ;;          
        *) echo "require console | start | stop | restart | status | dump " ;;    
esac

执行命令

chmod 777 /etc/init.d/nexus
chkconfig --add  nexus
chkconfig --list  nexus 

验证

service nexus start

service nexus stop

nexus开机启动

标签:stat   etc   case   export   oca   desc   list   star   java_home   

原文地址:https://www.cnblogs.com/feiyun126/p/10368957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!