C#(.net 2)からIISアプリケーションプールを再起動(リサイクル)するにはどうすればよいですか?
サンプルコードを投稿してくれたら感謝しますか?
ジョン、
IIS7を使用している場合、これは停止している場合に実行されます。表示されることなく再起動の調整ができると思います。
// Gets the application pool collection from the server.
[ModuleServiceMethod(PassThrough = true)]
public ArrayList GetApplicationPoolCollection()
{
// Use an ArrayList to transfer objects to the client.
ArrayList arrayOfApplicationBags = new ArrayList();
ServerManager serverManager = new ServerManager();
ApplicationPoolCollection applicationPoolCollection = serverManager.ApplicationPools;
foreach (ApplicationPool applicationPool in applicationPoolCollection)
{
PropertyBag applicationPoolBag = new PropertyBag();
applicationPoolBag[ServerManagerDemoGlobals.ApplicationPoolArray] = applicationPool;
arrayOfApplicationBags.Add(applicationPoolBag);
// If the applicationPool is stopped, restart it.
if (applicationPool.State == ObjectState.Stopped)
{
applicationPool.Start();
}
}
// CommitChanges to persist the changes to the ApplicationHost.config.
serverManager.CommitChanges();
return arrayOfApplicationBags;
}
IIS6を使用している場合はわかりませんが、web.configを取得して、変更日などを編集してみてください。 web.configを編集すると、アプリケーションが再起動します。
さあ:
HttpRuntime.UnloadAppDomain();
たぶん、この記事は役立ちます:
コードを少し変えて、アプリケーションプールをリサイクルしました。他の人が提供したものとは異なるいくつかの注意点:
1)usingステートメントを使用して、ServerManagerオブジェクトが適切に廃棄されるようにしました。
2)アプリケーションを停止しようとする際に問題が発生しないように、アプリケーションプールが開始するのを待ってから停止します。同様に、アプリプールが停止するのを待ってから開始します。
3)ローカルサーバーにフォールバックするのではなく、実際のサーバー名を受け入れるようにメソッドを強制しています。
4)別の理由で停止したアプリケーションプールを誤って起動しないようにし、既に停止したアプリケーションをリサイクルしようとする問題を回避できるように、アプリケーションをリサイクルではなく開始/停止することにしましたアプリケーションプール。
public static void RecycleApplicationPool(string serverName, string appPoolName)
{
if (!string.IsNullOrEmpty(serverName) && !string.IsNullOrEmpty(appPoolName))
{
try
{
using (ServerManager manager = ServerManager.OpenRemote(serverName))
{
ApplicationPool appPool = manager.ApplicationPools.FirstOrDefault(ap => ap.Name == appPoolName);
//Don't bother trying to recycle if we don't have an app pool
if (appPool != null)
{
//Get the current state of the app pool
bool appPoolRunning = appPool.State == ObjectState.Started || appPool.State == ObjectState.Starting;
bool appPoolStopped = appPool.State == ObjectState.Stopped || appPool.State == ObjectState.Stopping;
//The app pool is running, so stop it first.
if (appPoolRunning)
{
//Wait for the app to finish before trying to stop
while (appPool.State == ObjectState.Starting) { System.Threading.Thread.Sleep(1000); }
//Stop the app if it isn't already stopped
if (appPool.State != ObjectState.Stopped)
{
appPool.Stop();
}
appPoolStopped = true;
}
//Only try restart the app pool if it was running in the first place, because there may be a reason it was not started.
if (appPoolStopped && appPoolRunning)
{
//Wait for the app to finish before trying to start
while (appPool.State == ObjectState.Stopping) { System.Threading.Thread.Sleep(1000); }
//Start the app
appPool.Start();
}
}
else
{
throw new Exception(string.Format("An Application Pool does not exist with the name {0}.{1}", serverName, appPoolName));
}
}
}
catch (Exception ex)
{
throw new Exception(string.Format("Unable to restart the application pools for {0}.{1}", serverName, appPoolName), ex.InnerException);
}
}
}
以下のコードはIIS6で動作します。 IIS7ではテストされていません。
using System.DirectoryServices;
...
void Recycle(string appPool)
{
string appPoolPath = "IIS://localhost/W3SVC/AppPools/" + appPool;
using (DirectoryEntry appPoolEntry = new DirectoryEntry(appPoolPath))
{
appPoolEntry.Invoke("Recycle", null);
appPoolEntry.Close();
}
}
「リサイクル」を「開始」または「停止」に変更することもできます。
IIS6で動作するコードをリサイクルします。
/// <summary>
/// Get a list of available Application Pools
/// </summary>
/// <returns></returns>
public static List<string> HentAppPools() {
List<string> list = new List<string>();
DirectoryEntry W3SVC = new DirectoryEntry("IIS://LocalHost/w3svc", "", "");
foreach (DirectoryEntry Site in W3SVC.Children) {
if (Site.Name == "AppPools") {
foreach (DirectoryEntry child in Site.Children) {
list.Add(child.Name);
}
}
}
return list;
}
/// <summary>
/// Recycle an application pool
/// </summary>
/// <param name="IIsApplicationPool"></param>
public static void RecycleAppPool(string IIsApplicationPool) {
ManagementScope scope = new ManagementScope(@"\\localhost\root\MicrosoftIISv2");
scope.Connect();
ManagementObject appPool = new ManagementObject(scope, new ManagementPath("IIsApplicationPool.Name='W3SVC/AppPools/" + IIsApplicationPool + "'"), null);
appPool.InvokeMethod("Recycle", null, null);
}
時には、シンプルがベストだと感じます。そして、他の環境でより広い方法で作業するために、実際の経路を何らかの巧妙な方法で適応させることをお勧めしますが、私の解決策は次のようになります。
ExecuteDosCommand(@"c:\Windows\System32\inetsrv\appcmd recycle apppool " + appPool);
C#から、トリックを実行するDOSコマンドを実行します。上記のソリューションの多くは、さまざまな設定で機能せず、Windowsの機能をオンにする必要があります(設定によって異なります)。
このコードは私のために機能します。アプリケーションをリロードするために呼び出すだけです。
System.Web.HttpRuntime.UnloadAppDomain()
以下のメソッドは、IIS7とIIS8の両方で機能することがテストされています
ステップ1:Microsoft.Web.Administration.dllへの参照を追加します。ファイルはパスC:\ Windows\System32\inetsrv \にあるか、NuGetパッケージとしてインストールできます https://www.nuget.org/packages/Microsoft.Web.Administration/
ステップ2:以下のコードを追加します
using Microsoft.Web.Administration;
ヌル条件演算子の使用
new ServerManager().ApplicationPools["Your_App_Pool_Name"]?.Recycle();
[〜#〜]または[〜#〜]
if条件を使用してnullをチェックする
var yourAppPool=new ServerManager().ApplicationPools["Your_App_Pool_Name"];
if(yourAppPool!=null)
yourAppPool.Recycle();
別のオプション:
System.Web.Hosting.HostingEnvironment.InitiateShutdown();
前者が仕事を終えるのを待っている間にアプリを「終了」するUploadAppDomain
よりも良いようです。