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

Compare with Current View Page History

« Previous Version 12 Next »

Clean up shrine.conf

shrine.conf is considerably more compact than in SHRINE 3.0.0. Take this opportunity to start with a fresh shrine.conf file available in shrine-setup/qep-and-adapter-shrine.conf.

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>"

Update shrine.conf

  • Remove pmEndpoint.url. Add pmEndpoint.urlPath property to shrine.conf only if different from default value of /i2b2/services/PMService/getServices/. This value will be appended to the i2b2BaseUrl. 
  • Remove ontEndpoint.url. Add ontEndpoint.urlPath property to shrine.conf only if different from default value of /i2b2/services/rest/OntologyService/. This value will be appended to the i2b2BaseUrl. 
  • Remove adapter.crcEndpoint.url. Add adapter.crcEndpoint.urlPath property to shrine.conf only if different from default value of /i2b2/services/QueryToolService/. 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.

shrine.authenticate.pmProjectName = "ACT"

(Optional) Override default info logging level

Override with environmental override in /opt/shrine/tomcat/webapps/shrine-api/WEB-INF/classes/logback.xml. Below is an example of changing the logging level to debug:

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