Amazon Web Services status: access issues and outage reports
No problems detected
If you are having issues, please submit a report below.
Amazon Web Services (AWS) offers a suite of cloud-computing services that make up an on-demand computing platform. They include Amazon Elastic Compute Cloud, also known as "EC2", and Amazon Simple Storage Service, also known as "S3".
Problems in the last 24 hours
The graph below depicts the number of Amazon Web Services reports received over the last 24 hours by time of day. When the number of reports exceeds the baseline, represented by the red line, an outage is determined.
At the moment, we haven't detected any problems at Amazon Web Services. Are you experiencing issues or an outage? Leave a message in the comments section!
Most Reported Problems
The following are the most recent problems reported by Amazon Web Services users through our website.
- Website Down (73%)
- Sign in (18%)
- Errors (9%)
Live Outage Map
The most recent Amazon Web Services outage reports came from the following cities:
| City | Problem Type | Report Time |
|---|---|---|
|
|
Website Down | 20 days ago |
|
|
Sign in | 2 months ago |
|
|
Website Down | 2 months ago |
|
|
Website Down | 2 months ago |
|
|
Errors | 2 months ago |
|
|
Website Down | 2 months ago |
Community Discussion
Tips? Frustrations? Share them here. Useful comments include a description of the problem, city and postal code.
Beware of "support numbers" or "recovery" accounts that might be posted below. Make sure to report and downvote those comments. Avoid posting your personal information.
Amazon Web Services Issues Reports
Latest outage, problems and issue reports in social media:
-
Nil (@slowalgorithm) reported@awscloud The LEAST you can do is to give some compensation. This mistake caused operational issues for several companies across the globe.
-
AntDracula (@ant_dracula) reported@kankerhoerrrrrr @marcelocantos @awscloud And you had no response for "what's the alternative to shutting down services, just pay the bill?" Maybe you really are an AI bot instead of a retard.
-
Anjishnu Ganguly (@Anjishnu46) reportedHey @AWSSupport, Our Case 178452910500907 is still not resolved, and we've been left waiting without any meaningful update. Because of this, we're also unable to apply for AWS Activate, which is directly impacting our business operations and slowing down our workflow. This delay is becoming unacceptable. Please look into this urgently and help resolve it as soon as possible.
-
Open_ERV (@open_erv) reportedUnfortunately although they appear to be awesome people BrambleCFD is turning out to not be that hot. The main problem is the relationships/what they do of all the different settings is ridiculously opaque. There is no documentation. Their solution is to try to explain things in a video call, and if you need help, you ask for it, which it takes a week or more to get any kind of answer from an actual human, not because they are doing anything wrong but that's just not a good system. It's a long long way from the useability of simscale. I did however uncover an option that might be reasonably good, which is a virtual machine that I pay for the core-hours on. In many ways this is better. I can work directly with openFOAM and one of the front ends on a high powered linux computer with hundreds of gigs of ram and 96 high powered cores, and still only pay for what I use, theoretically. The openFOAM foundation has a system worked out ad directly offers the service, unfortunately they in turn use the amazon AWS or the microsoft Azure system, but what can you do. There are other companies that do similar things, but they probably aren't as well done as the one from the actual foundation. I think I'll try that one first. Having an AI in a harness on the machine is probably going to be indispensable, but I'll be using it primarily as a learning tool rather than asking it to do everything for me. I have been able to set up CowAgent, which is kind of basic but seems to work ok, with DeepSeek. A "harness" allows the AI to run commands on your computer and read the output automatically, as well as the other things web chat stuff can do. Secondly, it can store information in files and run the AI in a loop, doing many inferences one after the other, thus getting far more done than a web chat can (actually they might do something similar now IDK but they don't seem to).
-
Vaibhav Khatri (@vaibhavkhatrii) reported@AWSSupport Believe me when I saw this, I had to check my BP. No issue is more than someone’s life.
-
Maurizio Santamicone (@santamm) reported@awscloud And while you fix it, you can credit us for those amounts.
-
Robert Culver (@senorculver) reported@awscloud Wow, that’s it, no explanation? No, and for your trouble, and extra work and panic, a free month of service or anything. Just our bad, see you next month?
-
Naren Bao 包娜仁 | Physical AI Agents (@NarenBao) reported@awscloud please fix your Cost Explorer bug asap!
-
Shaaaaaaaaan (@AryavartKSamrat) reported@Sahilvyas29 @JeffBezos @AWSSupport Its a amazon glitch man. Read about it.
-
Negi (@negihere) reported@sorower01 @awscloud I did not login into account yet any uses it’s showing ??
-
M (@mdw864) reported@AWSSupport Tells me to login when I keep telling you I cannot login because I don’t have the capability to do so.
-
Kishan (@Kishan200615) reported@AWSSupport Please help resolve this issue as soon as possible, as I urgently need my AWS Associate certification. If you need any additional information, please contact me. Thank you.
-
David Madelin 🇺🇦 (@pintofbeer) reported@AWSSupport I just can't fathom how you are STILL showing these broken numbers in the dashboard, for god's sake, hide them! This is no joke; people will be really stressed out about this and might do irrational things.
-
D (@D8118199174282) reported@awscloud No, you still haven’t compensated users for the cost bug error
-
devastatindave.eth (@NftCelestials) reported@awscloud totally avoidable error caused by reliance on unskilled h1b scabs ya'll will learn eventually
-
Ritesh Roushan (@devXritesh) reportedA good architecture starts by separating document storage, signing, identity verification, and notifications into independent services. 1. API Gateway All requests (upload, sign, download, share) pass through the API Gateway. It handles authentication, rate limiting, request validation, and routing. 2. Document Service Contracts are uploaded directly to object storage (Amazon S3/GCS/Azure Blob). Metadata such as owner, participants, document status, and version history is stored in PostgreSQL. Large files never pass through application servers. 3. Identity Verification Service Before signing, users verify their identity using email OTP, SMS OTP, OAuth, or KYC providers depending on compliance requirements. A verified identity token is issued before allowing signatures. 4. Signing Service Each signature request creates an immutable signing event. Documents are locked while applying a signature to prevent conflicts when multiple users sign simultaneously. Optimistic locking or version numbers help resolve concurrent updates. 5. Audit Log Service Every action upload, view, download, sign, reject, revoke is published to Kafka. Events are stored in an append-only audit database with timestamps, signer identity, IP address, and device information, creating a tamper-resistant audit trail. 6. Notification Service Kafka events trigger email, SMS, and push notifications asynchronously so users are notified instantly without slowing down API responses. 7. Security • Encrypt files at rest (AES-256) • TLS for data in transit • Short-lived signed URLs for downloads • RBAC for document access • Hash every signed document (SHA-256) to detect tampering • Store digital certificates securely using a KMS/HSM 8. Scalability Deploy services independently behind load balancers. Use Redis for caching document metadata and sessions. Object storage handles millions of documents, while Kafka decouples services and absorbs traffic spikes. Read replicas improve download performance, and multi-region replication ensures disaster recovery. This architecture provides secure storage, concurrent signing, legal compliance, high availability, and scales to millions of contracts worldwide.
-
Abhijit Tripathy (@AbhijitTripat13) reported@awscloud @awscloud still no response. You guys are so slow
-
Har (@duckboy1909) reported@awscloud fix your Alexa servers and fix your Bluetooth on app and devices! #alexadown #alexa #amazon
-
CaptainAmericaTex (@CaptAmericaTx) reported@LayoffAI During the last 12 months Amazon AWS had outages directly caused by initiatives from the AI group (with associated revenue impact). No surprise they are down sizing the snake oil sales men group.
-
Jack Stone (@c0XhHxvylL) reported@AWSSupport be honest, how much of this problem was due to ai and/or vibecoding
-
Eszter Morvay (@eszter_morvay) reported@AWSSupport Also - apologies for the DM issues, i just changed my settings, so DMs should work now
-
₽ⱤΞΞ₮Ⱨ△M ₭Ɏ△И△M (@pkyanam) reported@AWSSupport can someone PLEASE get back to me on my support case with ID: 178380594100153 I really need this issue resolved with my account.
-
RickDavis404 (@RickDavis404) reported@awscloud I left an EKS cluster running while waiting for my Fable 5 limit to reset...only been a few days, but Opus says my aws bill was pretty accurate, just a small rounding error, still over 950 trillion dollars 🤑
-
paige s. (@PaigeSully88) reported@awscloud Your AI sucks and costs more than humans. This sure is not a human error
-
billy (@Billy17979063) reported@fortniteleaksmy It’s up for some down for some @awscloud ******* decides to shut down not just PlayStation but other platforms too
-
Sam (@samraysap) reported@awscloud @Ankushk73325131 Not surprised that H1-B Amazon is highlighting a Non-American. And they wonder why a multi trillion dollar company is having errors like charging quadrillions of dollars to their users. Hire American
-
𝘋𝘳. 𝙈𝙞𝙘𝙝𝙖𝙚𝙡 𝙅. 𝙋𝙚𝙩͛𝙚𝙧𝙨𝙤𝙣 (@WeatherArchive) reportedSomehow, GOES19 going down wasn’t the craziest thing to happen this week. Happy bankruptcy day to those who celebrate (I.e., have an @awscloud account)
-
José Ramírez García (@joseramirezrk) reported@awscloud I'm sure no infra outage caused stress and had the same repercussions than this "issue" something must be done, I guess, no?
-
Donna Paulsen (@donnapaulparody) reported@VeryCoolGuy6 @awscloud Check the issues that happened in last 6 months and diagnosis/cause of the issue.
-
Md Jaoyad (@JaoyadCode) reported@awscloud you should fix it otherwise people will become sick after watching the bill!