1. Home
  2. Companies
  3. Amazon Web Services
Amazon Web Services

Amazon Web Services status: access issues and outage reports

No problems detected

If you are having issues, please submit a report below.

Full Outage Map

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.

  • 82% Website Down (82%)
  • 9% Sign in (9%)
  • 9% Errors (9%)

Live Outage Map

The most recent Amazon Web Services outage reports came from the following cities:

CityProblem TypeReport Time
Township of Evan Website Down 4 days ago
New York City Website Down 6 days ago
Ciudad Jardín Website Down 1 month ago
Kyiv Sign in 2 months ago
Chennai Website Down 2 months ago
Point Pleasant Beach Website Down 2 months ago
Full Outage Map

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:

  • jbodl
    Jan Jezek (@jbodl) reported

    @awscloud First you sent alerts that the account was over budget by 6-figure numbers. When the user logged in, the billing console confirmed the same. No banner there was an issue, no followup email, nothing. Just wannabe funny jokes on X. Seriously, AWS?

  • WeatherArchive
    𝘋𝘳. 𝙈𝙞𝙘𝙝𝙖𝙚𝙡 𝙅. 𝙋𝙚𝙩͛𝙚𝙧𝙨𝙤𝙣 (@WeatherArchive) reported

    Somehow, 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)

  • mdw864
    M (@mdw864) reported

    @googlecloud @GoogleCloudTech do you accommodate customers with disabilities? In case we have problems and need to speak to you? I think I may have to switch to you because @awscloud has not provided accommodations for people with disabilities.

  • wilczynski24
    Maciej Wilczyński (@wilczynski24) reported

    @opsolutehq @awscloud Otherwise, I believe it's not fully viable for full-range products. Example of Lovable: they have hundreds of potential use cases. That's where they are on credit-based systems rather than outcome-based systems, because you can't narrow down the overall cafeteria of use cases.

  • NotUnHackable
    Aaryan Bansal (@NotUnHackable) reported

    @awscloud that issue was happening since yesterday dude. why tf did it take so much time?

  • joseramirezrk
    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?

  • okko
    Okko Ojala @okko@mastodon.social (@okko) reported

    @edwarddonner @awscloud @AWSSupport Combine a bug like that and spending caps, and the services would have been taken down and caused major losses of services worldwide.

  • Ayush_awa
    Ayush Awasthi (@Ayush_awa) reported

    @AWSSupport Its the third day today. The only mail I received from aws was all about “We are getting someone to investigate this” Since then I havent received any update. My only issue is that these things are time sensitive and you cant just take days after days with no real status updates

  • open_erv
    Open_ERV (@open_erv) reported

    Unfortunately 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).

  • Ironlucaaa
    Ironluca (@Ironlucaaa) reported

    Heyo again @AWSSupport, thanks for fixing the issue! My bill is only $503 now. That's much better, it's okay now!

  • erinEncoded
    Erin (@erinEncoded) reported

    @awscloud This is tone deaf. It wasn’t funny. It was upsetting. It reduced my trust in your systems, testing, and ability to roll back critical errors. I didn’t laugh. Why are you?

  • ant_dracula
    AntDracula (@ant_dracula) reported

    @_LeadPoisoning_ @awscloud That’s because it’s never up long enough to generate an error

  • payal_codes
    Payal (@payal_codes) reported

    Day 1 : "How to Scale an App to 10 Million Users on AWS" If I have to design a system for 10 million users, I won't build everything on Day 1 because it will add unnecessary complexity and cost. I'll start simple with one application server and one database. As traffic grows, if the server starts reaching its CPU, memory, or storage limits, I'll first scale vertically by moving to a bigger instance. Once that is not enough, I'll separate the backend and database so both can scale independently. To avoid a single point of failure, I'll deploy the application across multiple Availability Zones and put a Load Balancer in front so if one server or AZ goes down, traffic is automatically routed to healthy servers. As the number of users keeps increasing, I'll make my application stateless by storing sessions in Redis. This allows me to add multiple application servers behind the Load Balancer and scale horizontally. If my database starts getting overloaded with reads, I'll use Redis to cache frequently accessed data and add read replicas to distribute read traffic. For static assets like images, CSS, and JavaScript, I'll store them in Amazon S3 and serve them through CloudFront so requests don't keep hitting my application servers. If traffic suddenly spikes during sales or events, I'll enable Auto Scaling with CloudWatch metrics so AWS automatically adds or removes servers based on demand. As the application becomes larger, I'll split the monolith into microservices. This allows each service, like authentication, payments, or notifications, to scale independently instead of scaling the entire application. If the database becomes the bottleneck, especially for write operations, I'll use sharding or federation depending on the data and business requirements. Finally, when users are spread across the world, I'll deploy the application in multiple AWS Regions to reduce latency and improve availability. My approach is always the same: find the bottleneck, solve that bottleneck, and only introduce more complexity when the current architecture can no longer handle the traffic.

  • BullCall101
    Zenwatts 🇺🇸 (@BullCall101) reported

    @awscloud Not my problem. Maybe sell a yacht or two and fix it yourself.

  • AIPulse0
    🔥 PHOENIXX🔥 (@AIPulse0) reported

    AMAZON AWS PAYS $127K/MO FOR CLOUD COMPUTING. SERGEY BOUGHT CHEAP SERVER RACK + CLAUDE AI. MAKES $318K Pause at 0:11 — rack with 40+ servers. Every indicator glows green. This is local computing. Zero latency. Zero cloud bills. Sergey, 35, Ukraine. Was AWS architect, $7,200/month. Understands: companies pay Amazon millions, but they can do same calculations locally. Bought used server rack for $4,800. Installed Claude AI for local processing. 78 companies pay $4,077/month each instead of $12K on AWS. Amazon offered $4,200,000. Sergey said: "You profit from dependency. I profit from freedom." Why — in video.

  • armujahid
    Abdul Rauf (@armujahid) reported

    @miserer3_mei @AWSSupport It's a known issue that they are already checking

  • LSF4Life1981
    Luke Skywalker (@LSF4Life1981) reported

    @RinoTheBouncer Just like you can't be bothered to Google anything PSN issue was @awscloud which doesn't say anything either

  • silksteele
    Silksteele (@silksteele) reported

    @adamKDean @awscloud Pshhhh! That's a rounding error against your consulting fees and contract work. I'm surprised you even noticed.

  • ant_dracula
    AntDracula (@ant_dracula) reported

    @kankerhoerrrrrr @marcelocantos @awscloud "skill issue" is a term only unironically used by losers and AI bots. I can take a guess at which one you are.

  • FipeRojas
    Felipe Rojas (@FipeRojas) reported

    @AWSSupport as root admin of a management account in Chile, your system failed to issue our statutory VAT invoice despite our tax settings were configurated according to your mails and RUT verified since june 2. Already 4 open cases without answer. ID 178524912400362

  • HecateKeys
    That Other Hecate (@HecateKeys) reported

    @OwenGregorian 1) Forgets how DNS works. AWS goes down for days. 2) Forgets how arithmetic & metering works. Trillion-dollar bills for scant usage. @awscloud Regretting all those mass layoffs of your veteran engineers yet?

  • erinEncoded
    Erin (@erinEncoded) reported

    @AWSSupport No follow up email sent to users to let us know not to panic after we got threshold emails. I was sick this morning and lost hours of productivity. Terrible, truly terrible, customer service. As soon as I see my account go back to 0, I’m moving to Azure.

  • kish_lloyd
    Kish_lloyd (@kish_lloyd) reported

    @AWSSupport Why does this feel like a stage for subscriptions hikes on other hosting providers. Previously human error was deemed the highest risk for error but if humans made AI 🤔

  • rebuiltWithSai
    Sai Manikanta ☕ (@rebuiltWithSai) reported

    Day 19 of #JobSwitchUntilPlaced 🚀 Today's progress: ✅ Started a new Microservices project by building the User Service ✅ Solved 2 DSA problems ✅ Learned about Blob Storage (Amazon S3) One step closer to building production-ready, scalable backend systems.💪 #BuildInPublic

  • doktorgphd
    Gabriel (@doktorgphd) reported

    @awscloud wow really??? i had to search x for the reason?? not even an email?? I saw the email sent yesterday about the cost alert and I spend the last hour trying to work out what is going on because it looks very legit and I only find out it was an error on x! Just had to send an email!!

  • GettingMyGlitch
    GettingMyGlitchOff (@GettingMyGlitch) reported

    @AWSSupport Again there is a mass wave of suspensions like in May I'm assuming in error as I've been on this platform for over 10 years and this seems to be happen more frequently. Emails from mturk-noreply havent worked in a long time,any updates on this situation @amazonmturk

  • Billy17979063
    billy (@Billy17979063) reported

    @fortniteleaksmy It’s up for some down for some @awscloud ******* decides to shut down not just PlayStation but other platforms too

  • mailbox28564784
    mail box (@mailbox28564784) reported

    @amazonIN @amazon @awscloud I am extremely disappointed with Amazon's customer service. Despite returning the product, I have neither received my ₹1,400 refund nor a replacement. Repeated follow-ups and social media complaints have not resolved my issue.l

  • anondis1122
    kyun anon (Gobhi ka fool ) (@anondis1122) reported

    @AWSSupport @ashu_sharma17 Yeah. Why tf not send an email.. that there is an issue. I have a medical condition. It put my life in danger

  • pcgamer11
    Steven Coburn (@pcgamer11) reported

    @PlayStation We can't play the open beta rn because PSN IS DOWN. Yes, it uses/runs on @awscloud but you could at least ACKNOWLEDGE the issue!!!