- Newest
- Most votes
- Most comments
The error you're encountering appears to be related to SSL/TLS communication issues rather than a specific OpenSSL problem with Amazon S3 in the us-east-1 region. There are a few things to consider:
-
Bucket Existence: The first command you ran in us-west-2 correctly identified that the bucket doesn't exist. This is expected behavior for a non-existent bucket.
-
SSL/TLS Error: The error in us-east-1 is different and suggests an SSL/TLS problem. This could be due to various reasons:
- Network Issues: There might be network interference or a proxy causing problems with the SSL handshake.
- SSL/TLS Version Mismatch: Your client might be trying to use an outdated or unsupported SSL/TLS version.
- Certificate Issues: There could be problems with certificate validation on your end.
-
Multiple Devices: Since you mentioned this occurs on multiple devices and browsers, it's less likely to be a local configuration issue and more likely a network-wide problem or an issue with how your network is interacting with AWS services.
To troubleshoot this:
- Check your network configuration, especially if you're behind a corporate firewall or using a VPN.
- Ensure your AWS CLI and OpenSSL installations are up to date.
- Try using the '--no-verify-ssl' option with your AWS CLI command to see if it bypasses the issue (note: this is not recommended for production use).
- If possible, try the command from a different network to isolate whether it's a network-specific issue.
If the problem persists, you may need to contact AWS support for further assistance, as it could be related to how your network is routing requests to the S3 service in the us-east-1 region.
Sources
AWS OpenSSL Error | AWS re:Post
S3 Error download file SSE | AWS re:Post
Relevant content
- asked 6 years ago
- asked 6 years ago
I am also getting this error all of a sudden and it is a blocker for us.
This is a blocker for us too.