Updating wordpress in a multi-node environment
Posted
by
Peter
on Server Fault
See other posts from Server Fault
or by Peter
Published on 2014-06-11T07:26:31Z
Indexed on
2014/06/11
9:27 UTC
Read the original article
Hit count: 231
Wordpress
I'm finding this very tricky in a multi node environment, with code under revision control. AKA. multiple frontends and single database. I have a deployment process that pushes a git repo to the servers, but obviously if I update Wordpress from within the admin panel, it will update the files to one FE. Then I would need to copy over the new files to the other FE nodes. Plus, whenever these changes are written when Wordpress updates on a node, it writes code into the git repo. As such, it then breaks the auto deploys that perform 'git pulls', as it then has untracked changes and refuses to pull in new deploys unless manually intervened.
How does one easily keep Wordpress updated in a multi node (load balanced) environment?
© Server Fault or respective owner