Redgate Summit – The Database DevOps Transformation Watch now
PASS Data Community Summit logo

PASS Data Community Summit

A hybrid conference in Seattle and online

15-18 November

Flyway Documentation

This documentation site is not updated. The new documentation can now be found on documentation.red-gate.com

Poll

Oracle Kerberos Cache File

Flyway Teams

Description

The location of the krb5cc_<UID> credential cache file for use in Kerberos authentication. This is optional, and only has any significance when kerberosConfigFile is also specified. It may assist performance.

Usage

Commandline

./flyway -oracle.kerberosCacheFile="/temp/krb5cc_123" info

Configuration File

flyway.oracle.kerberosCacheFile=/temp/krb5cc_123

Environment Variable

FLYWAY_ORACLE_KERBEROS_CACHE_FILE=/temp/krb5cc_123

API

Flyway.configure()
    .oracleKerberosCacheFile("/temp/krb5cc_123")
    .load()

Gradle

flyway {
    oracleKerberosCacheFile = '/temp/krb5cc_123'
}

Maven

<configuration>
    <oracleKerberosCacheFile>/temp/krb5cc_123</oracleKerberosCacheFile>
</configuration>