I am using following command to take backup on S3 bucket. Because we use IAM role/Profile assigned to EC2 server using STS assume policy I have to use the temp token too .
fdbbackup start -d “blobstore://aws_access_key_id:access_secret_access_key:aws_session_token@s3.us-east-1.amazonaws.com/myFirstBackup?bucket=bucket name” .
I am getting following error when i run the above command :-
ERROR: Could not create backup container: Operation timed out
ERROR: An error was encountered during submission
Fatal Error: Backup error
When i ran regular AWS command after setting these ENV variables it does copy the file to the bucket so accesss key/password/token is not an issue for sure.
aws s3 cp test.txt s3://
So is the URL need to be different in the fdbbackup command. Can someone help here ?