You are not logged in.
I have the following job setup "002" in xsi-dir/jobs folder, the job ran successfully yesterday but failed today, please let me know how to fix it, thanks!
002
"volumes/datastore1/xsi-dir/xsibackup" \
--backup-prog=onediff:z \
--certify-backup=no \
--backup-point=192.168.2.xx:22:/mnt/NAS/ESXi_214_243_DS/$( date +%Y%m'00000000' ) \
--backup-type=Custom \
--backup-vms="GR-x" \
--backup-how=hot \
--remote-xsipath=/vmfs/volumes/datastore1/xsi-dir \
--use-smtp=2 \
--mail-to=it.support@xxx.com \
--backup-id=002 \
--description="XSIbackup-GR-x" \
--override=xsibakfilter \
--on-success="backupId->005" \
--on-error="backupId->005" \
--exec=yes >> "/vmfs/volumes/datastore1/xsi-dir/var/logs/xsibackup.log" 2>&1
email with log
Last error raised for the above VM:
ERROR CLXSIDF1, details: [GR-x] error: XSIDiff error, details: --source=stdin: Command not found.
Complete backup elapsed time: 2 min
The ESXi configuration was saved to 192.168.2.xx:22:/mnt/NAS/ESXi_214_243_DS/20191100000000
• [ Thu Nov 7 08:21:23 UTC 2019 ] ERROR (CLXSIDF1), details [GR-x] error: XSIDiff error, details: --source=stdin: Command not found.
• [ Thu Nov 7 08:21:27 UTC 2019 ] ERROR (CLXSIDF1), details [GR-x] error: XSIDiff error, details: --source=stdin: Command not found.
• [ Thu Nov 7 08:21:34 UTC 2019 ] ERROR (CLXSIDF1), details [GR-x] error: XSIDiff error, details: --source=stdin: Command not found.
• [ Thu Nov 7 08:21:42 UTC 2019 ] ERROR (CLXSIDF1), details [GR-x] error: XSIDiff error, details: --source=stdin: Command not found.
• [ Thu Nov 7 08:21:04 UTC 2019 ] WARNING (CLDUPDSK), details [GR-x] warning: we have detected that there might exist duplicate disk names for this VM. Ignoring this message might end up in data loss
Regards
Jazz
Offline
It looks like the xsidiff binary has disappeared from the backend
Offline
so, can you please let me know what to do? thank you
Offline
I can located the xsidiff which under xsi-dir directory as well....
/vmfs/volumes/5a0ef7cf-a09460e8-fc32-fc4dd4d2b807/xsi-dir/bin # ls -al
total 8208
drwx------ 1 root root 1540 Nov 7 07:10 .
drwx------ 1 root root 2660 Nov 8 01:53 ..
-rwx------ 1 root root 47064 Oct 30 08:31 dd
-rwx------ 1 root root 557882 Oct 30 08:31 dialog
-rwx------ 1 root root 107936 Oct 30 08:31 lzop
-rwx------ 1 root root 59271 Oct 30 08:31 pv
-rw-r--r-- 1 root root 82 Nov 7 07:10 pv___hash
-rwx------ 1 root root 1195825 Oct 30 08:31 xsibackup-rsync
-rw-r--r-- 1 root root 82 Nov 7 07:10 xsibackup-rsync___hash
-rwx------ 1 root root 1715801 Oct 30 08:31 xsidiff
-rw-r--r-- 1 root root 82 Nov 7 07:10 xsidiff___hash
Offline
You are missing the backup prog in the remote command. The error is stating that the [b]--source=stdin[/b] command does not exist, which lets you know you are running some remote command which is
--source=stdin
Instead of
/path/to/xsidiff --source=stdin
Offline