Info |
---|
This manual is an extension of our general Checkmk backup article: https://docs.checkmk.com/master/en/backup.html |
...
Find the correct backup job
Code Block | ||||
---|---|---|---|---|
| ||||
OMD[mysite]:~$ mkbackup jobs Job-ID Title ------------------------------------------------------------ myid mytitle OMD[mysite]:~$ |
Please run the backup directly on the command line and forward the output to a log file.
Code Block | ||||
---|---|---|---|---|
| ||||
OMD[mysite]:~$ omd -v backup --no-compression mybackup - >~/path/to/my_backup.txt |
...
This issue is that this file contains a non-ascii character at the end. "AUTORIT�.rrd"
To correct this, we must delete or rename this file. The safest solution would be to rename it.
Code Block | ||||
---|---|---|---|---|
| ||||
OMD[mysite]:~$ mv oldfilename newfilename |
...