I'm using lighttpd as webserver for php application server. The avg. load on this server is about 2-3. MySQL database is separated to another server (it's load ~0.4). How could I scale php application server?
Thank you.
|
I'm using lighttpd as webserver for php application server. The avg. load on this server is about 2-3. MySQL database is separated to another server (it's load ~0.4). How could I scale php application server? Thank you.
| |||||
feedback
|
|
In a few words, a solution, generally speaking, is to :
The load-balancing server can be some specialized hardware ; or a reverse-proxy, using Apache (see
For example, if a user is randomly balanced on server 1 for one page, and server 2 for another page, you cannot use file-based sessions : the session will be created on server 1, but will not be found on server 2, later.
Same things with images (uploaded by users, for example) : you'll have to either :
For more informations on the kind of process I often use, you can take a look at the answer I gave a while back on this question : Updating a web app without any downtime. The explanation given there is for one server, but to do the same thing on several servers, you can :
(I've done this with up to 7 servers, for one application, and never had any problem) | |||||||
feedback
|