I have seen a number of issues where the Windows Azure role is stuck when you deploy it and you can’t get it started. There are a few great posts about this problem at:
Windows Azure role stuck in Initializing/Busy/Stopping Another common reason for Windows Azure role to stuck in Initializing/Busy/Stopping One of the problems outlined here shows up because an exception is thrown in the OnStart function inside the WebRole.cs file in your Windows Azure WebRole. If an exception happens here, it becomes an unhandled exception because there is no try/catch and so the process that it is running in will be shut down. There is a great description of this ...
Go to the complete details ...