当前位置:   article > 正文

IIS监控应用程序池和站点假死,自动重启IIS小工具

c# iis流量监控

文章技术适合初学者。高级的C#开发工程师这些估计都熟悉到烂了,望不要喷。

第一、C#代码要操作IIS 就必须先导入 Microsoft.Web.Administration.dll ,方便控制台程序做成windows服务,还要导入Topshelf.dll,附件中有这两个dll,

想要玩一下的可以下载试试,点击Install.bat做windows服务,也可以直接点击exe文件在控制台上查看您要的效果,  点击下载附件.

第二、整个小工具就两个类,Program.cs , IISWatcherControl.cs 直接贴代码了,这个小工具只是为了帮您自动重启IIS,但是程序为什么会崩溃或者 程序池会挂掉,

还是要您自己检查下写的代码哪里写的不合理导致的.

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Topshelf;
  7. namespace IISWatcherService
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. HostFactory.Run((x) =>
  14. {
  15. x.Service<IISWatcherControl>();
  16. x.RunAsLocalSystem();
  17. x.SetServiceName("IISWatcherService");
  18. x.SetDisplayName("IISWatcherService");
  19. x.SetDescription("监控IIS运行状态");
  20. });
  21. }
  22. }
  23. }

C#监控IIS代码

  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading;
  7. using System.Threading.Tasks;
  8. using Microsoft.Web.Administration;
  9. using Topshelf;
  10. namespace IISWatcherService
  11. {
  12. public class IISWatcherControl : ServiceControl
  13. {
  14. #region ServiceControl 成员
  15. public bool Start(HostControl hostControl)
  16. {
  17. MonitoringIISApp();
  18. return true;
  19. }
  20. public bool Stop(HostControl hostControl)
  21. {
  22. return true;
  23. }
  24.      /// <summary>     
  25. /// 每个十秒钟监控一次是否有暂停的web站点和应用程序池     
  26. /// </summary>
  27. public void MonitoringIISApp()
  28. {
  29. ServerManager webIIS = new ServerManager();
  30. Task.Factory.StartNew(() =>
  31. {
  32. var result = string.Empty;
  33. while (true)
  34. {
  35.    //获取IIS站点
  36. var sites = webIIS.Sites;
  37. foreach (var item in sites)
  38. {
  39. if (item.Bindings.Any(ii => ii.Protocol != "ftp") && item.State == ObjectState.Stopped)
  40. {
  41. if (item.Start() == ObjectState.Started)
  42. {
  43. result = string.Format(item.Name + ",站点启动成功 {0}",DateTime.Now);
  44. Console.WriteLine(result);
  45. WriteFile(result);
  46. }
  47. }
  48. }
  49.             //获取应用程序池
  50. var applications = webIIS.ApplicationPools;
  51. foreach (var item in applications)
  52. {
  53. if (item.State == ObjectState.Stopped)
  54. {
  55. if (item.Start() == ObjectState.Started)
  56. {
  57. result = string.Format(item.Name + ",应用程序池开启成功 {0}", DateTime.Now);
  58. Console.WriteLine(result);
  59. WriteFile(result);
  60. }
  61. }
  62. }
  63. Thread.Sleep(TimeSpan.FromSeconds(10d));
  64. }
  65. });
  66. }    

      /// <summary>
      /// 日志写入文件
      /// </summary>

                    private void WriteFile(string message)       

      {

  1. var directorypath = AppDomain.CurrentDomain.BaseDirectory + @"\LogFile";
  2. if (!Directory.Exists(directorypath))
  3. {
  4. Directory.CreateDirectory(directorypath);
  5. }
  6. var path = string.Format(directorypath + @"\log_{0}.txt", DateTime.Now.ToString("yyyyMMdd"));
  7. if (!File.Exists(path))
  8. {
  9. File.Create(path).Close();
  10. }
  11. using (StreamWriter sw=new StreamWriter(path,true,System.Text.Encoding.UTF8))
  12. {
  13. sw.WriteLine(message);
  14. }
  15. }
  16. #endregion
  17. }
  18. }

 时间飞快2017年一下就过去了,这是2018年的第一篇文章,希望今年可以写些博文。

转载于:https://www.cnblogs.com/axinno1/p/8266907.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/252313
推荐阅读
相关标签
  

闽ICP备14008679号