I’m trying to use the CLI to create a backup storage with Backblaze B2 using this command:
./cbb addAccount -st Backblaze -d “BackblazeB2” -ak “key id” -sk “secret key” -c “bucket name”
but I get the following results:
CloudBerry Backup Command Line Interface started
Key ID must be specified
Fail
What am I missing?
Edit: I see I needed it to be in this format:
./cbb addAccount -st Backblaze -d “BackblazeB2” -ac “key id” -ak “secret key” -c “bucket name”
Hopefully I can save someone the trouble later!