Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
728 views
in Technique[技术] by (71.8m points)

process - ESXi SSH session exit kills running job - nohup same result

I have a script on ESXi that I need to be able to ssh into, execute the script, disown the process and exit ssh session, while keeping the process running? I have tried executing it the following ways:

nohup /etc/run_command

nohup /etc/run_comand &

I have also run across trying this example: (Website - Sudoall.com)

exec </dev/null >/dev/null 2>/dev/null

but I must not be using it right, because I get the same results.

Is there a way to disown the process, exit the ssh session without killing the running process on ESXi?

---- Update ----

After a lot of google research, I stumbled across this Website. ESXi does not have screen, tmux, or disown. An nohup was not working...I gave setsid a shot, and it worked.

setsid /etc/run_command &

question from:https://stackoverflow.com/questions/65830703/esxi-ssh-session-exit-kills-running-job-nohup-same-result

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

After a lot of google research, I stumbled across this Website. ESXi does not have screen, tmux, or disown. An nohup was not working...I gave setsid a shot, and it worked.

setsid /etc/run_command &


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...