This post is more than 5 years old
1 Rookie
•
18 Posts
0
17725
May 27th, 2011 10:00
How can I cancel save sessions?
I have two save sessions that I can't appear to cancel/remove. How would I go about doing this?
As I result I get the following messages on log:
Media info: save set MSSQL: for client was aborted and removed from volume
Thanks.
No Events found!


Luis_Rogerio
116 Posts
1
June 2nd, 2011 13:00
Hi,
Try follow this example (http://nsrd.info/blog/2011/03/17/killing-scheduled-cloning-operations/):
jobquery
jobquery> show name:; job id:; job state:
jobquery> print type: clone job; job state: SESSION ACTIVE:
job id: 64002;
job state: SESSION ACTIVE;
name: clone.linux clones;
Once you’ve got that job ID, all you have to do is quit jobquery, and run:
In this case – it would be:
Regards.
Luis Rogerio
BGuevara
1 Rookie
•
101 Posts
0
May 31st, 2011 04:00
Do you see those sessions under NW administration console? If the process is not working at all and seems to be hang, stop de group under monitoring menu, If that don't work, you can kill the savegrp process under daemons in Unix or process administration in Windows.
ble1
6 Operator
•
14.4K Posts
•
56.2K Points
1
June 1st, 2011 10:00
You can kill the session with jobkill command. You can find id using jobquery command. Or if you have spare time restarting server will do the same.
lee6
68 Posts
0
June 2nd, 2011 13:00
ps -ef | grep nsr
find the job number left on the list
do a
kill xxxx the x's is the job number
if that does not kill it do a kill -9 xxxxx the x's are the job number.
kill -9 will kill it it is a bit more harsh then just a kill and kill only what you want.
in other words be carefull.