如何使用appcmd创建应用程序池?

发布于 2024-12-18 09:32:45 字数 186 浏览 2 评论 0原文

我发现我可以将现有应用程序池与现有站点关联起来,如下所示:

APPCMD.exe set app "sitename/" /applicationPool:"appPoolName"

但是如何在此命令之前使用名称 appPoolName、.NET 版本 4 和集成管道创建自己的应用程序池?

I have figured out I could associate an existing application pool with an existing site like this:

APPCMD.exe set app "sitename/" /applicationPool:"appPoolName"

But how do I create my own application pool with the name appPoolName, .NET version 4 and Integrated pipeline prior to this command?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怎言笑 2024-12-25 09:32:45

这个:

https ://learn.microsoft.com/en-us/iis/get-started/getting-started-with-iis/getting-started-with-appcmdexe

应该为您提供所需的一切。特别是

appcmd add apppool /name:appPoolName /managedRuntimeVersion:"v4.0" /managementPipelineMode:"Integrated"

应该可以完成这项工作。

This:

https://learn.microsoft.com/en-us/iis/get-started/getting-started-with-iis/getting-started-with-appcmdexe

should give you everything you need. In particular

appcmd add apppool /name:appPoolName /managedRuntimeVersion:"v4.0" /managedPipelineMode:"Integrated"

should do the job.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文