简体   繁体   中英

Azure The listener for function 'Sometestfunction' was unable to start

I am newbie to Azure. I am getting below error when I run my Azure function from Visual studio.

The listener for function 'Sometestfunction' was unable to start.
The listener for function 'Sometestfunction' was unable to start. Microsoft.Azure.Storage.Common: Server encountered an internal error. Please try again after some time.

what may be the possible causes for this?

Thanks

The most common problem is Storage Emulator service not start.

Try typing

"%programfiles(x86)%\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" status

in cmd to check the status.

If it returns false, enter the following command to start the Storage Emulator:

"%programfiles(x86)%\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" init
"%programfiles(x86)%\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start

Let me know whether this can solved your problem.:)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM