Unsolved
This post is more than 5 years old
3 Posts
0
740
August 16th, 2018 07:00
While migrating VM's from Vshpere5.5 to 6.x, old backup jobs are showing up as Queue'd
Has anyone seen this?
After migrating servers over to Vsphere 6, and moving the servers to the new backup groups.
The old networker jobs are showing up as queue'd with an old date on them.
How do I clear out the messages in Vsphere5.5?? VMware say's a networker job is still running in the background....
I can't find it....
Jim Kerwin
Retail Solutions
No Events found!
jimker_6c33f2
3 Posts
1
August 20th, 2018 16:00
This is using Networker 9.2 We found a PowerCLI command that will find these “queued” tasks and remove them from vCenter, but only if the Task is “cancelable” The command to gather the Task information is: Get-Task -Status Queued | select ID, IsCancelable which produces the list. Then you have to run: Get-Task | where {$_.id -eq "Task-task-xxxxxxx" } | stop-task -confirm:$false filling in the xxxxxx with the correct tasks identifier.
Deb_PS
156 Posts
0
August 30th, 2018 05:00
What is the NetWorker Version? and where do you see the queued jobs in vCenter?
jimker_6c33f2
3 Posts
0
August 30th, 2018 05:00
Solution is:
I found a PowerCLI command that will find these “queued” tasks and remove them from vCenter, but only if the Task is “cancelable”
The command to gather the Task information is: Get-Task -Status Queued | select ID, IsCancelable which produces the list.
Then you have to run: Get-Task | where {$_.id -eq "Task-task-xxxxxxx" } | stop-task -confirm:$false filling in the xxxxxx with the correct tasks identifier.