web app for linux deployed succesfully on azure app service but not starting on it. why it is happening?

Mudassir Tariq 1 Reputation point
2021-01-20T13:25:10.323+00:00

58693-s2.png

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,408 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Sam Cogan 10,347 Reputation points MVP
    2021-01-20T13:39:59.107+00:00

    The error explains the issue, it has started the container but it is not responding to any http pings on port 8080 (which I assume is the port you specified that your application is running on in the container). It's failed this health check so cannot start.

    You need to look at your container and check that the application is running on the correct port, and look at the container logs to see why it may not have started.

    0 comments No comments