2017-04-02 45 views
5

Azure Web Appをプログラムで再起動する方法はありますか?つまり、Kuduなどですか?Azure Web Appをプログラムで再起動する方法

管理ライブラリを使用することが可能ですが、ADでアプリケーションを作成できないため、私には当てはまりません。

+0

[パワーシェル](https://docs.microsoft.com/en-us/powershell/resourcemanager/azurerm.websites/v2.7.0/restart-azurermwebappは)素晴らしい作品を使用することができます! – trevorc

答えて

8

のPowershell:

Restart-AzureRmWebApp -ResourceGroupName xxx -Name xxx 

またはプロバイダの操作使用:

Invoke-AzureRmResourceAction -ResourceGroupName xxx -ResourceType 'Microsoft.Web/sites' -ResourceName xxx ` 
    -ApiVersion '2015-08-01' -Action 'Restart' -Force 

アズールCLI:

azure webapp restart --resource-group xxx --name xxx 

アズールパイソンCLI:

az appservice web restart --resource-group xxx --name xxx 

またはあなたがRest Api

+1

.NETライブラリを使用した例については、[this](https://github.com/davidebbo/AzureWebsitesSamples/blob/bf195e051935a6db3db196c63d9e8a124fc12aa9/ManagementLibrarySample/Program.cs#L295)も参照してください。 –

+1

こんにちはDavid!ありがとう、私はあなたのブログを見て、私は質問があります:私はADアプリケーションを作成せずにそれを行うことはできますか?私は既にWeb Appを持っています。 –

関連する問題