Ben php uygulama sunucusu için web sunucusu olarak lighttpd kullanıyorum. Ort. Bu sunucudaki yükü yaklaşık 2-3. MySQL veritabanı başka bir sunucuya (o yük ~ 0.4) ayrılmıştır. Nasıl php uygulama sunucusu ölçek olabilir?
Teşekkür ederim.
Birkaç kelime, bir çözüm, genellikle konuşan, şudur:
Yük dengeleme sunucu bazı özel donanım olabilir; ya da bir ters proxy, Apache örneğin (see mod_proxy_balancer
for example), {nginx [(2)]},) em>, vernik kullanarak ...
The most important problems you'll generally face when using several PHP servers instead of ones are related to the filesystem : with several servers, each server has its own disks and filesystem.
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.
In this specific case, you'll have to use another mecanism to store sessions -- store them in a database, or memcached, for example.
Görüntülerle aynı şeyler (uploaded by users, for example): Ya gerekir:
Edit after the comment : For the deployment, with several servers, I generally do exactly as I would with only one server.
Updating a web app without any downtime strong>: Ben sık kullandığınız sürecin tür hakkında daha fazla bilgi almak için, ben bu soruya bir süre geri verdim cevabı bir göz atabilirsiniz.
Orada verilen açıklama yapabilirsiniz, tek bir sunucu için, ama birkaç sunucu üzerinde aynı şeyi yapmak için:
(I've done this with up to 7 servers, for one application, and never had any problem)