Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • caseEngine: the database where case related information is stored for the case engineCase Engine
  • locks: the database where case locks are stored and thus enabling case consistency
  • tasks: the database where the tasks for the DCM Lists Service component are stored
  • messages: the database where all (failed/delayed) messages are stored for the DCM Maintenance App

...

In the application-case-engine.properties file, add the following lines which enable the case engine Case Engine to communicate with the caseEngine and locks databases:

Code Block
languagebash
titleapplication-case-engine.properties
#mongoDB - caseCase engineEngine
blueriq.case.engine.data.mongodb.host=<url-of-the-database-server>
blueriq.case.engine.data.mongodb.port=<port-of-the-mongoDB-instance>
blueriq.case.engine.data.mongodb.database=caseEngine

#mongoDB - locks
blueriq.locking.mongodb.host=<url-of-the-database-server>
blueriq.locking.mongodb.port=<port-of-the-mongoDB-instance>
blueriq.locking.mongodb.database=locks

...