# # Configuration of the driver manager ################################################################################# driver.vfs=db driver.project=db driver.user=db driver.subscription=db driver.history=db # # Database setup (used only in tests) ################################################################################# db.pool.setup.dbName=postgres db.pool.setup.jdbcDriver=org.postgresql.Driver db.pool.setup.jdbcUrl=jdbc:postgresql://localhost:5432/ db.pool.setup.jdbcUrl.params= db.pool.setup.user=postgres db.pool.setup.password=password # # Declaration of database pools ################################################################################# db.pools=default # # Configuration of the default database pool ################################################################################# # name of the database (used only in tests) db.pool.default.dbName=ocjutestdb # name of the JDBC driver db.pool.default.jdbcDriver=org.postgresql.Driver # URL of the JDBC driver db.pool.default.jdbcUrl=jdbc:postgresql://localhost:5432/ocjutestdb # optional parameters for the URL of the JDBC driver db.pool.default.jdbcUrl.params= # user name to connect to the database db.pool.default.user=ocjutest # password to connect to the database db.pool.default.password=ocjutest # the URL to make the JDBC DriverManager return connections from the DBCP pool db.pool.default.poolUrl=opencms:default # the maximum number of objects that can be borrowed from the pool db.pool.default.maxActive=25 # the maximum amount of time before throwing an exception when the pool is exhausted db.pool.default.maxWait=2000 # the maximum number of objects that can sit idled in the pool db.pool.default.maxIdle=10 # the query to validate connections db.pool.default.testQuery= # action to take when the pool is exhausted {grow|block|fail} db.pool.default.whenExhaustedAction=block # connections will be validated before they are borrowed from the pool db.pool.default.testOnBorrow=false # # Configuration for statement pooling ################################################################################# db.statements.default.pooling=true db.statements.default.maxActive=200 db.statements.default.maxWait=2000 db.statements.default.maxIdle=100 db.statements.default.whenExhaustedAction=block # # Configuration of the database driver manager ################################################################################# db.name=postgresql db.vfs.driver=org.opencms.db.postgresql.CmsVfsDriver db.vfs.pool=opencms:default db.vfs.sqlmanager=org.opencms.db.postgresql.CmsSqlManager db.project.driver=org.opencms.db.postgresql.CmsProjectDriver db.project.pool=opencms:default db.project.sqlmanager=org.opencms.db.postgresql.CmsSqlManager db.user.driver=org.opencms.db.postgresql.CmsUserDriver db.user.pool=opencms:default db.user.sqlmanager=org.opencms.db.postgresql.CmsSqlManager db.subscription.driver=org.opencms.db.postgresql.CmsSubscriptionDriver db.subscription.pool=opencms:default db.subscription.sqlmanager=org.opencms.db.postgresql.CmsSqlManager db.history.driver=org.opencms.db.postgresql.CmsHistoryDriver db.history.pool=opencms:default db.history.sqlmanager=org.opencms.db.postgresql.CmsSqlManager db.cos.pool=opencms:default # # The class used to generate cache keys ################################################################################# cache.keygenerator=org.opencms.db.CmsCacheKey # # Ethernet address used for UUID generation # Server name used for various messages ################################################################################# server.ethernet.address=4b:60:ca:37:04:99 server.name=OpenCmsServer # # Enable/Disable OpenCms Setup Wizard # The wizard sets the flag to false after the setup. # To use the wizard again, reset it manually to true. # By setting no value, wizard can always be used. ################################################################################# wizard.enabled=false