Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding load balancer to a wordpress multisite installation

I am trying to add a load balancer to a wordpress application which has multi-site installation.

WordPress saves the server IP address in MySQL tables, since there would be two application servers and a single DB server and a load balancer.

i am using a RackSpace load balancer.

Can anyone please suggest what should the DOMAIN_CURRENT_SITE point to in wp-config.php and do i need to make any changes in the Database to update the IP address, if yes what IP address should be stored in DB.

Also, i am using Lsync utility to sync content of one server to another do i need to sycn wp-config.php as well?

Also, apart from wp-config.php and database are there any changes i need to make?

Also, apart from this most importantly how would the session be managed?

Thanks.

like image 888
opensource-developer Avatar asked May 17 '16 18:05

opensource-developer


1 Answers

If you are using a Rackspace Load Balancer as per your comment you need to use the Load Balancer IP address in the DB tables.

Just make sure the IP address of the Load Balancer you are using is static and not a Dynamic IP Address.

Can anyone please suggest what should the DOMAIN_CURRENT_SITE point to in wp-config.php and do i need to make any changes in the Database to update the IP address, if yes what IP address should be stored in DB.

DOMAIN_CURRENT_SITE should be your primary domain. The IP address of Load Balancer should be stored in database.

Also, i am using Lsync utility to sync content of one server to another do i need to sycn wp-config.php as well?

No need to sync the wp-config.php.

Also, apart from wp-config.php and database are there any changes i need to make?

Please make sure the "Uploads" directory where all media assets are stored is syncing properly for both servers when new file is uploaded. Test the upload functionality of the wordpress and see if the uploaded media file appears on both the server.

Also, apart from this most importantly how would the session be managed?

Rackspace Load Balancer have "Session Persistence" feature, enable it check the screenshot below. Check the black arrow at the end of the screenshot.

enter image description here

like image 86
error2007s Avatar answered Sep 20 '22 15:09

error2007s