设置 LightSwitch 应用程序部署到的 IIS 应用程序池
如何设置 LightSwitch 应用程序部署到的 IIS 应用程序池?
对于 IIS 6 和 7 ?
当使用 MsDeploy 时?
How do you set the IIS application pool that a LightSwitch application is deployed to ?
For both IIS 6 and 7 ?
When using MsDeploy ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想使用 msdeploy.exe 仅将应用程序池部署到 IIS 7,则可以使用 appPoolConfig 提供商。 (IIS 6 不支持该提供程序。)
如果您使用 msdeploy.exe 并希望将应用程序池作为应用程序部署的一部分包含在内,则可以使用 -enableLink:AppPool 或 -enableLink:AppPoolExtension 开关(它们是等效的)。
另外,如果要设置应用程序池的 .NET Framework 版本,可以使用 Web 部署 appPoolNetFx 提供商。
如果您要使用 IIS 管理器,这里有一些参考:
要在 IIS 7 中设置应用程序池,请转到 应用程序池参考页面,并按照“如何为现有站点或应用程序配置应用程序池”下的步骤操作。。
要在 IIS 6 中设置应用程序池,请参阅 在 IIS 6.0 中配置应用程序池。
If you want to use msdeploy.exe to deploy just the app pool to IIS 7, you can use the appPoolConfig provider. (The provider is not supported on IIS 6.)
If you’re using msdeploy.exe and want to include the application pool as part of an application deployment, you can use the -enableLink:AppPool or -enableLink:AppPoolExtension switches (they are equivalent).
Also, if you want to set the .NET Framework version of the application pool, you can use the Web Deploy appPoolNetFx provider.
Here are some references if you're going to use IIS Manager:
To set the application pool in IIS 7, go to the Application Pools reference page and follow the steps under “How to configure the application pool for an existing site or application”.
To set the application pool in IIS 6, see Configuring Application Pools in IIS 6.0.