Does Kestrel server keep running even after IIS or app pool crashes because I want to make sure that if there is any operation that is in progress does not get impacted when IIS or app pool crashes?
Asked
Active
Viewed 358 times
0
-
It should continue has if nothing appened. Kestrel is a completely separate server, 100% independent of IIS. – Alejandro Sep 07 '17 at 14:50
-
Rick described the process lifecycle, https://weblog.west-wind.com/posts/2017/Mar/16/More-on-ASPNET-Core-Running-under-IIS#IISApplicationPoolLifetime – Lex Li Sep 08 '17 at 00:26
-
@Alejandro can you provide any supporting link. – Sanjay Sahani Sep 08 '17 at 06:55
-
@Lex Li the above blog does mention that kestrel server starts and stops when app pool starts and stops, but what about if app pool crashes? – Sanjay Sahani Sep 08 '17 at 06:57