Thursday, March 14, 2013

SharePoint 2013 Apps - Error occurred in deployment step 'Install App for SharePoint': The requested service, '../AppMng.svc' could not be activated. See the server's diagnostic trace logs for more information.

SharePoint 2013 is interesting like any thing for me. While developing a custom app using Visual studio 2012, Deploying the app i got an error

Error occurred in deployment step 'Install App for SharePoint': The requested service, '<SiteURL>/AppMng.svc' could not be activated. See the server's diagnostic trace logs for more information.

By entering the Url in my browser it was gave me more information that 


Memory gates checking failed because the free memory is less than 5% of total memory. As a result, the service will not be available for incoming requests. To resolve this, either reduce the load on the machine or adjust the value of minFreeMemoryPercentageToActivateService on the serviceHostingEnvironment config element.


message it self says that there are more services are working in this machine, Please close some un-used services or change "minFreeMemoryPercentageToActivateService" value in web.config "serviceHostingEnvironment" tag. By default it will be 5 you can change it. 

I was just closed some un used applications. It was worked for me.

Share this