이중성을 사용하여 Linux 서버를 Amazon S3에 백업하려고합니다.
나는 여기 에서 훌륭한 설정을 얻는 데 도움이 되는 훌륭한 리소스를 발견했으며 거기에 나와 기본 스크립트를 사용하고 있습니다.
#!/bin/sh
# Export some ENV variables so you don't have to type anything
export AWS_ACCESS_KEY_ID=[your-access-key-id]
export AWS_SECRET_ACCESS_KEY=[your-secret-access-key]
export PASSPHRASE=[your-gpg-passphrase]
GPG_KEY=[your-gpg-key]
# The source of your backup
SOURCE=/
# The destination
# Note that the bucket need not exist
# but does need to be unique amongst all
# Amazon S3 users. So, choose wisely.
DEST=s3+http://[your-bucket-name]/[backup-folder]
duplicity \
--encrypt-key=${GPG_KEY} \
--sign-key=${GPG_KEY} \
--include=/boot \
--include=/etc \
--include=/home \
--include=/root \
--include=/var/lib/mysql \
--exclude=/** \
${SOURCE} ${DEST}
# Reset the ENV variables. Don't need them sitting around
export AWS_ACCESS_KEY_ID=
export AWS_SECRET_ACCESS_KEY=
export PASSPHRASE=
다른 사람이이 스크립트를 개선하고 더 나은 스크립트를 만드는 데 도움이되는 모범 사례를 공유 할 수있는 이중성에 대해 경험이 있습니까?