Direkt zum Inhalt

Acronis Backup and Recovery 11 errors on Oracle Linux 6.1 server

Thread needs solution

While attempting to run my first test backup after successfully installing Acronis Backup & Recovery 11 on an Oracle Linux 6.1 server, via the crontab (command line), I receive the following errors:

Error code: 0x1510008
$module = "acrocmd_lxa64"
Tag: 0x7A8E520180FDC06B

Error: Option 'arc' is either not defined or has an invalid order.
Error code: 0x1512010
$module = "abr11cli_lxa64_pic"
Tag: 0x4965621A14843453

-----------------------------------------------------
Here is my backup command syntax, that produced the above errors:

/usr/sbin/acrocmd backup disk --disk=1 --arc=clientserver1_archive1 --loc=nfs://remoteserver1.domain/storage/images/clientserver1.tib >> /home/root/logs/image_bkup.log 2>&1

For security purposes, I have substituted the real server hostnames in the above command string with made up hostnames of: "clientserver1" and "remoteserver1".

I am new to Acronis and don't have too much familiarity on how to solve the 2 errors above and would really appreciate any assistance I can get.
Thank you.

0 Users found this helpful

--arc should always directly follow after --loc parameter, not before it. Command line is sensitive to argument order, like if it requires three pairs of credentials , you put them directly after corresponding items ( e.g. source and location )

ps - don't put archive name in --loc, it's already specified in --arc. Put only path there.

Thanks dev-anon,
That was a big help. I finally was able to hammer out the syntax and get rid of all errors, as per the following command string:

/usr/sbin/acrocmd backup disk --disk=1 --loc=nfs://remote-server.domain/storage:/images/ --arc=local-client1.archive >> /home/root/logs/image_bkup.log 2>&1