asp.net mvc - Weird Behavior Deploying Azure Cloud Service -
I have a very strange issue for the deployment of blue cloud service. I have 2 examples with 5 examples and 1 cache role. Examples are:
When I'm deploying my MVC 5 Webber from the blue portal, then the deployment begins on the first web frequency, then it tells me that "the role can not be started" due to an error And stop processing other instances. I did an RDP for example, for example, and in fact the MVC application throws an error that it can not find a fixed view file "layout page" ... " Could not be found "The specified path exists so I did an iisreset and the application worked. After manually deciding the issue, the deployment continues for the next example and the unsuccessful frequency becomes "ready".
Any idea why things are not deployed smoothly or why an iisreset is necessary? >
It is relatively recent around a month.
My environment is:
- .NET Framework 4.5.1
- MVC 5
- Blue SDK 2.4 for VS 2013 .
Thanks for the help.
Finally !! I got this issue and decided it.
I had a local storage resource to store temporary files and local file cache for some components, and the role was configured to reset on resume. One of the components (Lucene.NET for Blue) was locking files in that local storage, due to which there is a problem on the deployment required to reset the IIS to issue a lock.
I configured files to cache the local resources rather than files and things at the windows temporary store.
Comments
Post a Comment