Stop an Azure Web Job using WEBJOBS_STOPPED and WEBJOBS_DISABLE_SCHEDULE configuration settings
Views (3945)
We had one triggered web job running every 5 minutes that would pull the data from SQL On Prem DB and create lead records in CRM.
During testing we wanted to stop the running web job.
To do go to Application Settings for the App Service. Add WEBJOB_STOPPED and WEBJOBS_DISABLE_SCHEDULE setting with value 1.

We’d see our web job stop running.


Another option is to kill the process itself
Open Ã
https://[appname].scm.azurewebsites.net/ProcessExplorer

Get all the details here

https://github.com/projectkudu/kudu/wiki/WebJobs
Hope it helps..
This was originally posted here.

Like
Report
*This post is locked for comments