cancel
Showing results for 
Search instead for 
Did you mean: 

export_monitor.sh aborted due to disconnection

Former Member
0 Kudos

I started export_monitor.sh . However, the putty session is deactivated due to the poor connection.

Can I use "nohup export_monitor.sh & " and "nohup import_monitor.sh & " so that no matter how poor is the connection,

the export/import is guaranteed?

Did anybody do this using nohup before?

Please help. Thanks a lot!

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Absolutely, works nicely, i recommend to also redirect stdout to a file.

nohup export_monitor.sh > exp_mon.log &

Cheers Michael

Answers (1)

Answers (1)

markus_doehr2
Active Contributor
0 Kudos

...or you can use a tool like "screen" which multiplexes the terminal, you start it, start export_monitor.sh and you can re-attach again to the screen if your connection drops:

http://en.wikipedia.org/wiki/GNU_Screen

Markus