Applicable to:
- SolusVM
Question
How to stop AutoFTP Backup on the Slave Node in SolusVM?
Answer
There is no direct option to stop the AutoFTP Backup from the Panel. The only way is to kill the backup process running on the Node by following the below steps:
- Log in to the corresponding Slave Node via SSH (where the backing up VPS is hosted).
- Search for
autoftpbackup.php
and/orbunzip2
/vzdump
processes:
# ps aux | egrep 'backup|bunzip2|vzdump'
- Kill those processes:
# kill -9 <PID1> <PID2> <PIDn>
For example:
# kill -9 17738 11617 11621
- Remove all the temporary files created by the backup manually. They are stored at the
/vz/dump
(for OpenVZ VPSs) and/tmp
(for KVM/Xen VPSs) directories:
# rm -rf /vz/dump/vzdump-openvz-*
# rm -rf /tmp/dump-* - Remove
/usr/local/solusvm/tmp/ftpbackup.pid
lock file, otherwise, next time scheduled task fails to run the script:
# rm -f /usr/local/solusvm/tmp/ftpbackup.pid
Comments
0 commentsPlease sign in to leave a comment.