Search code examples
azureazure-app-service-plansazure-app-service-envrmntazure-appservice

Is it possible to disable the kudu scm


Disable kudu for the running web app. Why? Kudu is consuming the CPU periodically and I want to stop that.

So far I have tried to Kill the process by clicking on Properties >> Kill button. but this process gets start again.

enter image description here


Solution

  • You can use below settings in Application settings.

    When separation enabled (the default), the main site and scm site run in different sandboxes.

    WEBSITE_DISABLE_SCM_SEPARATION=true
    

    enter image description here

    Then you can check Process Explorer.

    enter image description here

    Offical Doc:

    enter image description here

    Use the same process for the user site and the scm site