4
votes

Azure toolkit 1.5

  1. Create New project
  2. Add worker role
  3. Hit F5

The deployments get stuck in:

[fabric] Role Instance: deployment(189).WindowsAzureProject1.WorkerRole1.0

[fabric] Role state Unknown

Eventually the deployment times out.

Any ideas on how to debug this?

5
I have the same problem: social.msdn.microsoft.com/Forums/en-US/windowsazuredevelopment/… Where did you find error log of Azure SDK Tooling?Konstantin Tarkus
Just have submitted a ticket to Microsoft Connect: connect.microsoft.com/netservices/feedback/details/689450/…Konstantin Tarkus

5 Answers

3
votes

I personally solved this problem by removing *:808 binding in IIS Manager for Default Website.

2
votes

The required Azure assemblies may be missing from the package you are deploying to Azure.

Double check that each Azure assembly your project is referencing has the copy to local property set to true.

The following article may help to debug the problem:

Debugging MSDN article

2
votes

Got it working, turned out that Windows Process Activation Service wasn't running correctly on my machine. Reinstalled and enabled tcp activation and now its working!

1
votes

I had the same problem: roles were permanently stuck in Unknown state and never started properly. Turns out that Net.Tcp Port Sharing Service (SMSvcHost.exe) had taken port 808 and this prevented dev fabric from starting the roles. I restarted the service, and now my roles run fine in dev fabric.

So if you run into the same problem, see if port 808 has been taken by some other process.

0
votes

Andreas,

You're probably missing an assembly reference or have a startup script issue, best way to continue is to try the deployment with intellitrace enabled.