zoukankan      html  css  js  c++  java
  • 批量启动application pool

    在powershell中执行

    Get-ChildItem IIS:AppPools | where {$_.state -eq "Stopped"} | Start-WebAppPool

    需要确保以下2个service是启动的

    Start-Service WAS     (windows process activation service)

    Start-Service W3SVC

    导致application pool停止的原因

    application pool和was 停止的原因是,使用web platform installer安装url rewrite。安装失败之后导致的,

    === Verbose logging started: 3/6/2019 14:35:58 Build type: SHIP UNICODE 5.00.10011.00 Calling process: C:Program FilesMicrosoftWeb Platform InstallerWebPlatformInstaller.exe ===
    MSI (c) (6C:D0) [14:35:58:019]: Resetting cached policy values
    MSI (c) (6C:D0) [14:35:58:019]: Machine policy value 'Debug' is 0
    MSI (c) (6C:D0) [14:35:58:019]: ******* RunEngine:
    ******* Product: C:UserscluAppDataLocalMicrosoftWeb Platform InstallerinstallersUrlRewrite28F41A67FA49110155969DCCFF265B8623A66448F ewrite_amd64_en-US.msi
    ******* Action:
    ******* CommandLine: **********
    MSI (c) (6C:D0) [14:35:58:019]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (6C:D0) [14:35:58:019]: Grabbed execution mutex.
    MSI (c) (6C:D0) [14:35:58:022]: Cloaking enabled.
    MSI (c) (6C:D0) [14:35:58:022]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (6C:D0) [14:35:58:026]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (C4:E0) [14:35:58:033]: Running installation inside multi-package transaction C:UserscluAppDataLocalMicrosoftWeb Platform InstallerinstallersUrlRewrite28F41A67FA49110155969DCCFF265B8623A66448F ewrite_amd64_en-US.msi
    MSI (s) (C4:E0) [14:35:58:033]: Grabbed execution mutex.
    MSI (s) (C4:18) [14:35:58:038]: MainEngineThread is returning 1603
    MSI (s) (C4:E0) [14:35:58:039]: User policy value 'DisableRollback' is 0
    MSI (s) (C4:E0) [14:35:58:039]: Machine policy value 'DisableRollback' is 0
    MSI (s) (C4:E0) [14:35:58:039]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (C4:E0) [14:35:58:039]: Note: 1: 1402 2: HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionInstallerRollbackScripts 3: 2
    MSI (s) (C4:E0) [14:35:58:041]: Note: 1: 1402 2: HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionInstallerRollbackScripts 3: 2
    MSI (s) (C4:E0) [14:35:58:042]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (6C:D0) [14:35:58:044]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (6C:D0) [14:35:58:044]: MainEngineThread is returning 1603
    === Verbose logging stopped: 3/6/2019 14:35:58 ===

    另外这玩意还导致了Net Tcp Listener挂掉了,

  • 相关阅读:
    P4097 [HEOI2013]Segment(李超线段树模板)
    P2155 [SDOI2008]沙拉公主的困惑
    BZOJ3675 [Apio2014]序列分割[斜率优化dp]
    hdu4261 Estimation[暴力dp+对顶堆]
    poj2374 Fence Obstacle Course[线段树+DP]
    poj1463 Strategic game[树形DP]
    CH5E02 [IOI1999]花店橱窗[暴力dp]
    CH5E01[NOIP2010] 乌龟棋[暴力]
    CH5702 Count The Repetitions[倍增dp]
    P1081 [NOIP2012]开车旅行[倍增]
  • 原文地址:https://www.cnblogs.com/chucklu/p/10483059.html
Copyright © 2011-2022 走看看