[SOLVED] backup loop

Oct 8, 2016
3
0
1
Hello,

I have a Proxmox server on which was mounted an NTS cluster that was down. During this down, a backup is launched, since the spot turns in a loop. I can not stop it from the management interface.

Thank you in advance for your help :)

@ +

Clement

XLrJL1zfx4N9ZDZ1.png
 
You can stop it from the CMD. Search for the process and kill it, after that disable the NFS storage, then unmount the NFS from your servers.
Code:
ps ax | grep vzdump
kill -9 <PID>
pvesm set <storage> --disable 1
fusermount -uz /mnt/pve/mountpoint_you_NFS
 
Do the killcommand more then once, the pit is changing after kill, the backupprocess starts once again. After killed all out, remains this:
Code:
12897  ?   DS  0:01 task UPID:WebPro01:0000XXXXXXXXXXXXXXXXXXXXXXX:vdzump::root@pam:
That can't be killed, only way is to restart the whole machine.
 
okey. this is a workround this

for example:
umount -f /mnt/pve/<NAME OF MOUNT> and then kill it in consol by kill -9 or in gui. takes 1min but easy to fix.