JDBCStore configuration¶
The JDBCStore module is configured in the file jdbcstore/jdbcstore.properties
inside the GeoServer data directory.
The following properties may be set:
enabled
: Use JDBCStore. Turn off to use the data directory for all configuration instead.initdb
: Initialize an empty database if this is set on true.import
: The import configuration option tells GeoServer whether to import the current GeoServer data directory from the file system to the database or not. If set to true, it will be imported and the config option will be set the value ‘false’ for the next start up to avoid trying to re-import the catalog configuration.initScript
: Path to initialisation script .sql file. Only used ifinitdb
is true.ignoreDirs
: specify all subdirectories of the GeoServer data directory that should be ignored by the JDBCStore, in a comma-separate list. These subdirectories will not be imported and while JDBCStore is running, all access to these subdirectories and their contents will be redirected to the default file system store. This is usually done with thedata
directory (which holds data rather than metadata such as images and shapefiles), temporary directories (which are not used for permanent storage) and the catalog directories (when using JDBCConfig, these are unused anyway and they need not be copied into the JDBCStore).cachedDirs
: specify all subdirectories of the GeoServer data directory that should be automatically cached on the file system by the JDBCStore, in a comma-separate list. These subdirectories will be stored in the database, but an up-to-date copy will be stored on the hard drive at all times. This is handy for files that are used by tools that do not support jdbcstore (such as Application Schemas for example) but still need to be synced between nodes.deleteDestinationOnRename
: allow automatic overwriting of existing destinations on move and rename operations (linux-style versus windows-style - the default store is platform dependant).
JNDI¶
Get the database connection from the application server via JNDI lookup.
jndiName
: The JNDI name for the data source. Only set this if you want to use JNDI, the JDBC configuration properties may still be set for in case the JNDI Lookup fails.
Direct JDBC Connection¶
Provide the connection parameters directly in the configuration file. This includes the password in the clear which is a potential security risk. To avoid this use JNDI instead.
jdbcUrl
: JDBC direct connection parameters.username
: JDBC connection username.password
: JDBC connection password.pool.minIdle
: minimum connections in poolpool.maxActive
: maximum connections in poolpool.poolPreparedStatements
: whether to pool prepared statementspool.maxOpenPreparedStatements
: size of prepared statement cache, only used ifpool.poolPreparedStatements
is truepool.testOnBorrow
: whether to validate connections when obtaining from the poolpool.validationQuery
: validation query for connections from pool, must be set whenpool.testOnBorrow
is truepool.testWhileIdle
: whether to validate idle connections, used in conjunction with the idle timer belowpool.setTimeBetweenEvictionRunsMillis
: period in millseconds for the idle object evictor, -1 to disable