I am running LAMP application server and planning to implement Redundant/Fail over/Load balancing Setup.Can someone give me some insights in designing the solution?
Any help..thanks in advance.
Regards, Ganesh
|
I am running LAMP application server and planning to implement Redundant/Fail over/Load balancing Setup.Can someone give me some insights in designing the solution? Any help..thanks in advance. Regards, Ganesh |
|||
|
|
You haven't specified how many servers you have. I'll suppose that you have two. With 2 servers you can do e.g. the following:
This takes care for the redundancy on the webserver level. There are other solutions as well and depending on your availability/load balancing needs you can skip parts of the above 3 steps. Regarding MySQL the best solution depends on the read/write characteristics of the application. Check the MySQL documentation for a starting point and implement either a MySQL cluster or a replicated MySQL database. |
|||
|