Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hello @Ramkumar Sundaresan,
This is often due to conflicts arising from existing IP-based SSL bindings. Specifically, if you see an error message like “Failed to add SSL binding. Cannot set certificate for existing VIP because another VIP already uses that certificate,” it indicates that another App Service instance is using an IP-based SSL binding with the same certificate. This situation occurs because one IP address cannot be bound to multiple certificates across different apps.
To resolve this issue, you can either delete the old IP-based SSL binding that uses the old certificate or create a new IP-based SSL binding with a different certificate. Alternatively, using Server Name Indication (SNI) SSL is recommended, as it allows multiple certificates on a single IP address and is suitable for most scenarios.
If this answers your query, do click Accept Answer and Up-Vote for the same. And, if you have any further query do let us know.