Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @Surbhi Satish Shukla ,
Addition to pavani response this behavior is expected on Azure App Service (Linux) and is not related to any certificates uploaded by your application. During container startup, the platform runs standard Linux certificate maintenance commands (such as OpenSSL rehash / update-ca-certificates) against the default system trust store. These commands may emit warnings like duplicate certificates or bundle files (for example ca-certificates.crt containing multiple certificates), and they are written to stderr, which App Service surfaces in the log stream as errors. However, these are benign platform-level warnings and do not indicate any issue with your app, TLS configuration, or connectivity. At present, there is no Azure-supported way to suppress these messages, since they originate from the managed base image initialization process that is not user-configurable. The recommended approach is to safely ignore them or filter them in your logging solution (e.g., Application Insights / Log Analytics).
https://learn.microsoft.com/en-us/azure/app-service/troubleshoot-diagnostic-logs
https://learn.microsoft.com/en-us/azure/app-service/configure-language-java-deploy-run?tabs=windows&pivots=java-javase
Kindly let us know if the above helps or you need further assistance on this issue.