2017-08-31 7 views
1

起動に失敗し、私はlocal.settings.jsonAzureストレージエミュレータは、私はローカルでのVisual Studioを使用し、時限トリガーをやっAzureの機能を実行しようとしている

"AzureWebJobsStorage": "UseDevelopmentStorage=true", 

でこれを設定している。しかしそれがエラー「無効なストレージアカウント 『devstoreaccount1』を有する。

私は、それがこのエラーを持っている(、ファイアウォールをオフに管理者)エミュレータを起動しよう。何の変更、デフォルトのインストールません。多くの後

C:\Windows\system32>cd C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator 

C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator>AzureStorageEmulator.exe init 
Windows Azure Storage Emulator 5.2.0.0 command line tool 
Found SQL Instance (localdb)\MSSQLLocalDB. 
Creating database AzureStorageEmulatorDb52 on SQL instance '(localdb)\MSSQLLocalDB'. 

Granting database access to user Robin-PC\Robin. 
Database access for user Robin-PC\Robin was granted. 

Initialization successful. The storage emulator is now ready for use. 
The storage emulator was successfully initialized and is ready to use. 

C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator>AzureStorageEmulator.exe start 
Windows Azure Storage Emulator 5.2.0.0 command line tool 

Unhandled Exception: System.TimeoutException: Unable to open wait handle. 
    at Microsoft.WindowsAzure.Storage.Emulator.Controller.EmulatorProcessController.InternalWaitForStorageEmulator(Int32 timeoutInMilliseconds) 
    at Microsoft.WindowsAzure.Storage.Emulator.Controller.EmulatorProcessController.EnsureRunning(Int32 timeoutInMilliseconds) 
    at Microsoft.WindowsAzure.Storage.Emulator.Commands.StartCommand.RunCommand() 
    at Microsoft.WindowsAzure.Storage.Emulator.Program.Main(String[] args) 

C:\Program Files (x86)\Microsoft SDKs\Azure\Storage Emulator> 

答えて

1

t私はその理由を知りました。デフォルトの10000ポートは、バックグラウンドプロセスによって取得されます。私はこの命令に従って、どのプロセスを見つけ出し殺したのですか?

https://stackoverflow.com/a/43787993/283598

関連する問題