You are not logged in.
Pages: 1
Hi,
I think I have found a little bug in xsidiff. Can you please clarify if this is normal behaviour.
We are running XSIDiff configured via the GUI in a job which makes a backup of our virtual machines to another storage aera on a NFS Server.
This runs fine as a cron job at a scheduled time.
If we SSH into our VMWare 6.5 ESXi box and manually run the backup job things run fine. But if we exit out of our SSH session with the virtual machine the job then stops and terminates
Is this the intended behavious of xsidiff or have I to leave the SSH session open when manually invoking a job?
Kind Regards
Offline
Yes, that is regular behaviour in Linux shells, when you exit processes are killed by SIGHUP:
[url]https://stackoverflow.com/questions/32780706/does-linux-kill-background-processes-if-we-close-the-terminal-from-which-it-has[/url]
If you run manually and want the job to finish, you should do one of these things:
1 - Leave the SSH connection open until the process finishes.
2 - Put the process in the background by adding a NOHUP command first and a & sign at the end of the command.
[url]https://askubuntu.com/questions/8653/how-to-keep-processes-running-after-ending-ssh-session[/url]
You might need to wrap your job in a file, in fact that's what XSIBackup does by placing the jobs in job files inside the [b]xsi-dir/jobs[/b] directory.
This approach might not work, due to XSIBackup creating many child subprocesses with complex relationships. So you will most probably be bound to just leave the SSH session open. We have not designed XSIBackup to be detached from a TTY.
In full Linux environments, there are tools which allow you to achieve the same goal, like [b]screen[/b].
Offline
Pages: 1