私の環境には "Standard" という名前のアプリ サービスがあります。現在、アプリ サービスは Standard レベルの Small 1 インスタンスで構成されています。
powershell を使用して、アプリ サービスをスケーリングしようとしています。これにより、このアプリ サービス内の Web アプリがスケーリングされます。サイズを中、インスタンスを 2 に変更したいと考えています。
これが私のスニペットです。
Login-AzureRmAccount
Set-AzureRMAppServicePlan -Name Standard -ResourceGroupName
MyWebAppRG - NumberofWorkers 2 -WorkerSize Medium
このコマンドを実行すると、次のエラーが発生します
Set-AzureRMAppServicePlan : Could not load file or assembly 'Microsoft.Rest.ClientRuntime.Azure.Authentication, Version=0.11.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
At line:11 char:1
+ Set-AzureRMAppServicePlan -Name Standard -ResourceGroupName MyWebAppRG -Numbero ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Set-AzureRMAppServicePlan], FileNotFoundException
+ FullyQualifiedErrorId : System.IO.FileNotFoundException,Microsoft.Azure.Commands.WebApps.Cmdlets.AppServicePlans.SetAzureAppSe
rvicePlanCmdlet
よくわかりません、何が問題なのですか?そして、このエラーが正確に何を意味するのか。
情報については、set-AzureRMResource などの他の powershell コマンドを問題なく実行できます。環境の問題ではありません。
どんな助けでも感謝..
ありがとう