如何通过 ASP.Net 和 C# 回收 IIS 6 中的应用程序池?
我有一台 IIS 6 服务器,我需要回收特定的应用程序池。我需要使用 C# 设计一个 ASP.NET 网页来执行此任务。
我该怎么做?
I have an IIS 6 server and I need to recycle a specific application pool. I need to design an ASP.NET web page using C# that performs this task.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需制作一个单独的网页/Web 应用程序,并将其安装在针对另一个应用程序池的 Web 服务器上(不确定如果作为应用程序的同一页面运行并链接到要回收的同一应用程序池,它将如何工作)。
然后按照此处的说明进行操作:https://stackoverflow.com/a/496357/559144
just make a separated web page / web application and install it on the web server targeting another app pool (not sure how it would work if running as same page of your app and being linked to the same app pool you want to recycle).
then follow instructions here: https://stackoverflow.com/a/496357/559144
您可以使用 DirectoryEntry 类以编程方式回收应用程序池的名称如下:
You can use the DirectoryEntry class to programmatically recycle an application pool given its name:
以下应该(我无法证明这一点,因为代码已经有一段时间没有使用了)就足够了:
The following should (I can't attest to that as the code hasn't been used in quite some time) suffice:
我用的是这个方法。
HttpRuntime.UnloadAppDomain()
HttpRuntime.UnloadAppDomain 方法 (System.Web)
I using this method.
HttpRuntime.UnloadAppDomain()
HttpRuntime.UnloadAppDomain Method (System.Web)