centos/ubuntujenkins.war自启动脚本 Linux启动停止jar包

本文发布时间: 2019-Mar-22
#! /bin/sh# chkconfig: 2345 10 90 # description: jenkins ....# This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do the full Sys V style init stuff. #prefix=/home/lanmps/jenkins#nohup $prefix/start_jenkins.sh >> $prefix/jenkins.log 2>&1 &#风来了.呆狐狸JENKINS_ROOT=/home/lanmps/jenkinsJENKINSFILENAME=jenkins.war#停止方法stop(){ echo "Stoping $JENKINSFILENAME "ps -ef|grep $JENKINSFILENAME |awk '{print $2}'|while read piddo kill -9 $pid echo " $pid kill"done}case "$1" instart) echo "Starting $JENKINSFILENAME "nohup $JENKINS_ROOT/start_jenkins.sh >> $JENKINS_ROOT/jenkins.log 2>&1 & ;;stop) stop ;;restart) stop start ;;status) ps -ef|grep $JENKINSFILENAME ;;*) printf 'Usage: %s {start|stop|restart|status}\n' "$prog" exit 1 ;;esac保存为jenkins目录下 jenkins.shJENKINS_ROOT为 jenkins目录1.centosln -s /home/lanmps/jenkins/jenkins.sh /etc/init.d/jenkinschkconfig --add jenkinschkconfig --level 345 jenkins on启动方式/etc/init.d/jenkins start2.ubuntuln -s /home/lanmps/jenkins/jenkins.sh /etc/init.d/jenkinsupdate-rc.d -f jenkins defaults启动方式/etc/init.d/jenkins start


(以上内容不代表本站观点。)
---------------------------------
本网站以及域名有仲裁协议。
本網站以及域名有仲裁協議。

2024-Mar-04 02:09pm
栏目列表