This post is more than 5 years old
295 Posts
0
443
November 12th, 2010 07:00
ns120 - lost putty connection to CS doing server_archive copying, is the task running?
hello
i lost my putty connection doing copying fs with server_archive, need to know if the process still is running
how to do that via cli.
or check if a target file system is growing with the data tranfering how to do that via cli
thanks
mc
No Events found!
dynamox
9 Legend
•
20.4K Posts
0
November 13th, 2010 05:00
you can try:
ps -ef | grep erver_archive
to see if target file system is growing you can use server_df command
server_df datamover_name fs_name
Next time you need to run something in the background and you are afraid of losing connection, look at using "screen". It's a utility pre-loaded on the control station that allows you to create "virtual" console. You create screen console, start your server_archive command and can disconnect from putty window. You can later on come back and re-connect to your screen console and see everything that was going on while you were disconnected. You can also use nohup process to send it into background but i found screen to be more useful. Google both and you will find plenty of examples.
jelucho
295 Posts
0
November 14th, 2010 21:00
Thanks for your tip,
i will find those utils
mc