Support the ongoing development of Laravel.io →
posted 3 years ago
Architecture

I have two AWS EC2 servers behind load balancer and one database with replication...

How do I update Laravel code with no down time? Idea was to remove one server from load balancer and update Laravel code while second server serves the traffic. But If I execute migration, it will change the database and second server will produce errors :/

Last updated 2 years ago.
0

If you make your migrations right it's doable. You can run old code on a migrated DB if the migrations are only additive, and you haven't changed or deleted something the old code relies on.

Then you can just do one server at a time like this:

  • Take Server 1 Offline
  • Update Server 1
  • Use Server 1 to perform DB migrations
  • Bring Server 1 Back Online
  • Take Server 2 Offline
  • Update Server 2
  • Bring Server 2 back online

Or just use Envoyer. The other question is do you really "need" zero downtime deploys or does it just sound nice to have? Forge can deploy one of my apps in less than 30 seconds.

Last updated by @james4645 3 years ago.

ibiza385 liked this reply

1

Sign in to participate in this thread!

Eventy

Your banner here too?

Ibiza ibiza385 Joined 12 Feb 2022

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.