Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 1 KB

File metadata and controls

23 lines (18 loc) · 1 KB

ConfigHub Database Manager Build Status

Before upgrading ConfigHub instances to the latest version, DBManager will upgrade your database schema to the latest version. ConfigHub instances starting with version 1.8 will require you to upgrade the schema using Database Manager before they will run.

Build:

./gradlew clean build jar

Run:

java -jar build/libs/ConfigHubDBManager-1.9.2.jar [parameters]

Usage:

parameters [-hV] -t <databaseType> -r <databaseUrl> -u <username> -p <password>

  -h, --help                Show this help message and exit.
  -t, --url=<databaseType>  Database types: oracle, postgresql, mysql
  -r, --url=<databaseUrl>   Database URL.  Ex: jdbc:postgresql://127.0.0.1:5432/ConfigHub
  -u, --user=<username>     Database username
  -p, --password=<password> Database password
  -V, --version             Print version information and exit.