This guide is part of the migrate Java EE app to Azure training
Congratulations!! You migrated an existing Java EE application to Azure, aka application to App Service Linux and application's data to Azure Database for PostgreSQL, MySQL and or SQL Database. Also, you migrated without worrying about the underlying infrastructure resources.
Time to clean up ...
Unless you plan to perform additional tasks with the Azure resources from the workshop (such as tutorials referenced below), it is important to destroy the resources that we created for it to avoid the cost of keeping them provisioned.
The easiest way to do this is to delete the entire resource group.
az group delete -g ${RESOURCE_GROUP} --yes --no-wait
As an addendum to this workshop, consider taking the tutorial on using alerts and action groups with Azure Spring Cloud to detect and respond to abnormal conditions.
Have a look through the the following quick starts, tutorials, cheat sheets and reference materials:
- Java Enterprise Guide for App Service on Linux
- Maven Plugin for Azure App Service
- JBoss Data Source Management
- JBoss/WildFly CLI Guide
- JDBC driver for PostgreSQL
- PostgreSQL CLI Cheat Sheet
- JDBC driver for MySQL
- MySQL CLI Cheat Sheet
- Cheat sheet for sqlcmd CLI
- Opening an SSH connection from your development machine
- Azure for Java Developers
⬅️ Previous guide: 03 - Bind Java EE application to database