Hello,
I am new to restic and set up backups to S3. How can I stop an ongoing backup?
To launch a backup I have to do this each time?:
export AWS_ACCESS_KEY_ID="votre_cle_api_publique"
export AWS_SECRET_ACCESS_KEY="votre_cle_api_privee"
restic -r s3:s3.example.com/sauvegarde backup /home/toto
So, if I understand well, each time I have to enter export AWS_ACCESS_KEY_ID and export AWS_SECRET_ACCESS_KEY before launching restic -r s3:s3.example.com/sauvegarde backup /home/toto , am I right?
Do you have any recommendations/settings when backing up to s3? Or recommendations for sbdy new to restic?
Thank you.