如何为简单的 asp.net 演示应用程序配置 webfarm
我只是在制作一个演示应用程序,并且想要配置 asp.net 以使用 webfarm。我怎样才能这样做呢?
我已经将会话模式配置为使用 SQL Server,并且它运行良好。接下来我应该做什么?我正在使用 Windows 7、SQL Server 2008 和 Asp.Net 4.0 Webforms。
I am just making a demo application and want to configure asp.net to use webfarm. How can I do so?
I have already configured my session mode to use SQL Server and it works perfectly. What should I do next? I am using Windows 7, SQL Server 2008 and Asp.Net 4.0 webforms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要多台计算机 - 在两台计算机上设置应用程序并将两个网站配置为具有公共主机名/标头。您还需要设置一个通用机器密钥来加密视图状态等。在实际的网络场设置中,您将拥有 as/w 或 h/w 负载均衡器,它将根据负载将请求路由到任一服务器。如果您没有负载均衡器,则使用本地主机文件来解析通用主机名 - 例如,对于前几个请求,使用计算机 1,然后将其切换到计算机 2 以处理接下来的几个请求,依此类推。
You need multiple machines - set up the application on both of them and configure both web sites to have a common host name/header. You also need to setup a common machine key for encrypting view-state etc. In real web farm setup, you will have a s/w or h/w load balancer that will be route requests to either server based on load. In case, you don't have a load balancer then use your local hosts file to resolve the common host name - for example, for first couple of request, use machine 1 and then switch it to machine 2 for next few and so on.