Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 747
AstroBoy Avatar asked Oct 31 '25 09:10

AstroBoy


1 Answers

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

like image 150
Jason Pan Avatar answered Nov 03 '25 00:11

Jason Pan