我们什么时候将 Web 服务器和应用程序服务器作为两个独立的物理层?
通常,当应用程序部署在服务器场上时,它具有中央数据库、一台或多台应用程序服务器以及一台或多台 Web 服务器。
既然应用层的所有服务都将通过Web服务器访问,为什么不将Web服务器部署在与应用服务器相同的物理层上呢?
具体问题是 - 将 Web 服务器部署为单独层的原因是什么?
从更广泛的角度来看,在决定部署场景时一般考虑哪些因素?
Typically when an application is deployed on a server farm, it has a central database, one or more application servers and one or more web servers.
Since all the services in the application tier are going to be accessed via the web server, why not deploy the web server on the same physical tier as that of the application server?
The specific query is - what are the reasons of deploying the web server as a separate tier?
On a broader perspective, what are the general considerations while deciding on the deployment scenario?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序服务器比 Web 服务器占用更多的 CPU 资源(大多数情况下都是这种情况),您可以横向扩展应用程序服务器,同时保持 Web 服务器的数量不变。
在 Web 场和应用程序场之间放置一个 NLB,您可以拥有(例如)2 个 Web 服务器和 5 个或更多(或其他)应用程序服务器来处理请求。它使管理基础设施成本变得更加容易。
If your application server is more CPU intensive than the Web server (which is the case most of the time), you may scale out the application server while keeping the number of Web servers as it is.
Put a NLB between the web farm and the application farm and you can have (for example) 2 web servers and 5 or more (or whatever) app servers to process the requests. It makes it easier to manage the infrastructure costs.