简体   繁体   中英

Jenkins seems to be the target for nohup in a script started via ssh, how can I prevent that?

I am trying to create a Jenkins job that restarts a program that runs all the time on one of our servers.

I specify the following as the command to run:

cd /usr/local/tool && ./tool stop && ./tool start

The script 'tool' contains a line like:

nohup java NameOfClass &

The output of that ends up in my build console instead of in nohup.out, so the job never terminates unless I terminate it manually, which terminates the program.

How can I cause nohup to behave the same way it does from a terminal?

If I understood the question correctly, Jenkins is killing all processes at the end of the build and you would like some process to be left running after the build has finished.

You should read https://wiki.jenkins-ci.org/display/JENKINS/ProcessTreeKiller

Essentially, Jenkins searches for processes with some secret value in BUILD_ID environment variable. Just override it for the processes you want to be left alone.

I had a similar problem with runnning a shell script from jenkins as a background process. I fixed it by using the below command:

BUILD_ID=dontKillMe nohup ./start-fitnesse.sh &

In your case, BUILD_ID=dontKillMe nohup java NameOfClass &

In the new Pipeline jobs, setting BUILD_ID no longer prevents Jenkins from killing your processes once the job finishes. Instead, you need to set JENKINS_NODE_COOKIE :

sh 'JENKINS_NODE_COOKIE=dontKillMe nohup java NameOfClass &'

See the wiki on ProcessTreeKiller and this comment in the Jenkins Jira for more information.

尝试在Jenkins构建步骤中添加& ,并使用> nohup.out重定向输出。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM