C#重启IIS指定网站和指定应用程序池

 1 using Jinher.AMP.BTP.Deploy;
 2 using Microsoft.Web.Administration;
 3 using Redis.Helper;
 4 using System;
 5 using System.Collections.Generic;
 6 using System.Configuration;
 7 using System.IO;
 8 using System.Linq;
 9 using System.Text;
10 using System.Threading;
11 using System.Threading.Tasks;
12 
13 namespace Redis
14 {
15 
16     public class Program
17     {
18         static readonly string AppPoolName = ConfigurationManager.AppSettings["ApplicationPoolName"].ToString();
19         static readonly string WebSiteName = ConfigurationManager.AppSettings["WebSiteName"].ToString();
20         static readonly int SleepTime = int.Parse(ConfigurationManager.AppSettings["SleepTime"].ToString());
21         static ServerManager sm;
22 
23         static void Main(string[] args)
24         {
25             Console.WriteLine($"检测程序启动,【{WebSiteName}】当网站或其应用池停下后,会自动启动。");
26             sm = new ServerManager();
27             new Thread(RecoveryWebSite).Start();
28         }
29 
30         static void RecoveryWebSite()
31         {
32             while (true)
33             {
34                 try
35                 {
36                     var pool = sm.ApplicationPools[AppPoolName];
37                     if (pool != null && pool.State == ObjectState.Stopped)
38                     {
39                         Console.WriteLine("检测到应用池" + AppPoolName + "停止服务");
40                         Console.WriteLine("正在启动应用池" + AppPoolName);
41                         if (pool.Start() == ObjectState.Started)
42                         {
43                             Console.WriteLine("成功启动应用池" + AppPoolName);
44                         }
45                         else
46                         {
47                             Console.WriteLine("启动应用池" + AppPoolName + "失败. " + SleepTime / 60 + "秒后重试启动");
48                         }
49                     }
50 
51                     var site = sm.Sites[WebSiteName];
52                     if (site != null && site.State == ObjectState.Stopped)
53                     {
54                         Console.WriteLine("检测到网站" + WebSiteName + "停止服务");
55                         Console.WriteLine("正在启动网站" + WebSiteName);
56                         if (site.Start() == ObjectState.Started)
57                         {
58                             Console.WriteLine("成功启动网站" + WebSiteName);
59                         }
60                         else
61                         {
62                             Console.WriteLine("启动网站" + WebSiteName + "失败. " + SleepTime / 60 + "秒后重试启动");
63                         }
64                     }
65                 }
66                 catch (Exception ex)
67                 {
68                     Console.WriteLine(ex.Message.ToString());
69                 }
70 
71                 GC.Collect();
72                 Thread.Sleep(SleepTime);
73             }
74         }
75     }
76 }

 

转载于:https://www.cnblogs.com/happygx/p/9680299.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值