From ac46e5c18c76fedc86981ed4e38b6f50cd4d1d56 Mon Sep 17 00:00:00 2001 From: Gokul Prathin Date: Tue, 27 Aug 2024 15:54:14 -0400 Subject: [PATCH] added application.properties linking --- content/english/blog/h2_database_cleanup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/english/blog/h2_database_cleanup.md b/content/english/blog/h2_database_cleanup.md index 77f7c4a..d2fa2fd 100644 --- a/content/english/blog/h2_database_cleanup.md +++ b/content/english/blog/h2_database_cleanup.md @@ -51,7 +51,7 @@ Here’s how you can perform a compact shutdown: java -cp /path/to/your/downloads/h2*.jar org.h2.tools.Shell -url jdbc:h2:/home/chetana/h2/gw -user -password ``` -*Replace /path/to/your/downloads/h2*.jar with the actual path to your downloaded jar file, and substitute and with your H2 database credentials.* +_Replace_ _/path/to/your/downloads/h2*.jar_ _with the actual path to your downloaded jar file. Substitute_ __ _and_ __ _with your H2 database credentials. If you’re using Spring Boot for your application, you can find these credentials in the_ _application.properties_ _file. For your convenience, here’s a_ [_link to application.properties file_](https://github.com/ESIPFed/Geoweaver/blob/master/src/main/resources/application.properties) _where you can locate the username and password._ 3. **Execute the SHUTDOWN COMPACT Command:**