Externalized OpenCDS configuration options are stored in the locations below:
%HOME%\.opencds\opencds.properties
NOTE: If OpenCDS is running on tomcat as a service on a Windows system, the configuration will likely have to live at the root (i.e., C:\.opencds\opencds.properties), as there is no default user.
This file must contain the first two lines below. The third line is options, if logging is desired.
knowledge-repository.type=<repository type> knowledge-repository.path=<repository path> log4j.logfile=<full path to log file>
knowledge-repository.type may be either of the two following values:
STORE
SIMPLE_FILE
CLASSPATH
- knowledge-repository.path is the absolute or relative path to the configuration, depending upon which type is chosen (above).
- Example configurations for SIMPLE_FILE may include:
- C:/opencds/opencds-knowledge-repository-data/resources_v1.3
- C:/opencds-knowledge-repository-data/resources_v1.3
- etc.
- The path for the CLASSPATH type is relative to the classpath of the running JVM (e.g., Tomcat).
- resources_v1.3
- Example configurations for SIMPLE_FILE may include:
- log4j.logfile is the location used by OpenCDS to write the logs. This line is optional. Typical values may include:
- C:/opencds/opencds.log
- etc.
PLEASE NOTE: The paths provided in opencds.properties on a Windows-based system must have either (1) all back-slashes escaped or (2) forward-slashes in place of back-slashes, otherwise the system will not start properly. For example, if your repository path is at the root folder in C:, e.g., C:\opencds-kr\resourceAttributes, the path configured for knowledge-repository.path must be either C:\\opencds-kr\\resourcesAttributes or C:/opencds-kr/resourcesAttributes (note the forward-slashed).