2.2. Specifying the Repository Location

By default, the repository will be created the first time JBoss Enterprise BRMS Platform is run. If a location has not been specified, the repository will be created in the directory the run command is issued from.
The repository should be stored in a secure location that is backed up.
Specify a location for the repository by editing the JBoss Seam components.xml configuration file.

Procedure 2.1. Specify the Repository's Location

  1. Shutdown the Application Server
  2. Open the components.xml file which is located in the deploy/jboss-brms.war/WEB-INF/ directory, and uncomment the repository.root.directory Key-Value attributes.
    <property name="properties">
       <key>org.drools.repository.configurator</key>
       <value>org.drools.repository.jackrabbit.JackrabbitRepositoryConfigurator</value>
       <!--  the root directory for the repo storage the directory must exist. -->
       <!--  <key>repository.root.directory</key><value>/opt/yourpath</value>  -->
    </property>
    
  3. Add the desired location of the repository to the repository.root.directory Key-Value Attribute. (This directory must already exist.)
    <property name="properties">
       <key>org.drools.repository.configurator</key>
       <value>org.drools.repository.jackrabbit.JackrabbitRepositoryConfigurator</value>
       <!--  the root directory for the repo storage the directory must exist. -->
       <key>repository.root.directory</key>
       <value>/BRMSRulesRepositoryLocation</value>
    </property>
    
  4. The JBoss Enterprise BRMS Platform will create a new datastore at that location if there is not already one there. To keep an existing datastore, copy the existing files to the new location before restarting the application server.
  5. Restart the application server. If an existing datastore was not moved to the new location, a new datastore will be created.