You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Clean up shrine.conf

shrine.conf is considerably more compact than in SHRINE 3.0.0. Take this opportunity to clean out the file. See the example file in shrine-setup/qep-and-adapter-shrine.conf as a starting point.

Add password.conf file 

Move shrine.keystore.password and shrine.hiveCredentials.password properties from shrine.conf to password.conf. The password.conf file should contain the following properties:

shrine.keystore.password = "<enter your password>"
shrine.hiveCredentials.password = "<enter your password>"

Changes to shrine.conf

  • Remove pmEndpoint.url and replace with pmEndpoint.urlPath. urlPath only contains the path of the pmEndpoint url. This value will be appended to the i2b2BaseUrl. 
  • Remove ontEndpoint.url and replace with ontEndpoint.urlPath. urlPath only contains the path of the ontEndpoint url. This value will be appended to the i2b2BaseUrl.
  • Remove breakdownResultOutputTypes.
  • Move shrine.messagequeue element to to shrine.hub.messagequeue.
  • Move i2b2BaseUrl and hubBaseUrl into the main shrine{} block.

(Optional) Require a specific project for users

To require users to be a member of a specific PM cell project. (Leave blank for current behavior.)

shrine.authenticate.pmProjectName = "ACT"

(Optional) Override default logging level from info to debug

Override with environmental override in /opt/shrine/tomcat/webapps/shrine-api/WEB-INF/classes/logback.xml

<logger name="net.shrine" additivity="false" level="debug">
 <appender-ref ref="shrine"/>
</logger>
  • No labels