Hi,
I have an amanda server on FreeBSD 14.3 and immediately after I start the backup with
it hangs and all its processes go to sleep state. I even had one process go to Z state.
My config looks like this:
I want to dump a local directory to google cloud storage using rclone script plugin.
Any ideas what I could be doing wrong?
I have an amanda server on FreeBSD 14.3 and immediately after I start the backup with
Code:
sudo -u amanda /usr/local/sbin/amdump -o debug_driver=3 -o debug_planner=3 -o debug_dumper=9 config-production
it hangs and all its processes go to sleep state. I even had one process go to Z state.
My config looks like this:
Code:
org "config-production"
dumpuser "amanda"
logdir "/var/log/amanda"
infofile "/amanda/state/curinfo"
indexdir "/amanda/state/index"
tpchanger "chg-disk:/amanda/vtapes"
labelstr "data[0-9][0-9]"
autolabel "data%%" EMPTY VOLUME_ERROR
tapecycle 4
dumpcycle 3 days
amrecover_changer "changer"
tapetype "TAPE01"
define tapetype TAPE01 {
length 10 gbytes
filemark 4 kbytes
}
define script-tool rclone {
comment "launch rclone sync"
execute-on post-host-backup
execute-where server
plugin "rclone"
}
define dumptype simple-dump-local {
auth "local"
compress best
program "DUMP"
script "rclone"
no-hold
no-full
}
holdingdisk hd1 {
directory "/amanda/holding"
use 0 mbytes
chunksize 1 mbyte
}
I want to dump a local directory to google cloud storage using rclone script plugin.
Any ideas what I could be doing wrong?