// check the server details configuration
ServerDetails detailsFromProps = getServerDetailsFromPropertiesOnly(serverProperties);
ServerDetails detailsFromDb = getServerDetails(dbUrl, dbUsername, clearTextDbPassword,
detailsFromProps.getName());
ExistingSchemaOption existingSchemaOption = getAutoinstallExistingSchemaOption(serverProperties);
if (detailsFromDb == null) {
log("This will be considered a new server: " + detailsFromProps);
} else {
if (existingSchemaOption == ExistingSchemaOption.OVERWRITE) {