Changes between Version 15 and Version 16 of OnyxDeployment


Ignore:
Timestamp:
01/05/11 09:45:01 (13 years ago)
Author:
jeff.lusted
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OnyxDeployment

    v15 v16  
    7979
    8080==== Edit onyx-config.properties ====
    81    1. Locate config file at $BRICCS_WEBAPPS/briccs-onyx-1.9.2/WEBINF/config/onyx-config.properties
     81Locate config file at $BRICCS_WEBAPPS/briccs-onyx-1.9.2/WEBINF/config/onyx-config.properties[[BR]]
    8282
     83The following settings should be set appropriately to access the pmi-lookup:
     84{{{
     85# Must be true in order for the "Participant Registry" button to be present.
     86org.obiba.onyx.participant.registry.enabled=true
     87# The type of "Participant Registry". Values include "fixed" for development and "restful" for deployment.
     88org.obiba.onyx.participant.registry.type=restful
     89# The url use by the RestfulParticipantRegistry to lookup Participants from a remote service.
     90org.obiba.onyx.participant.registry.uriTemplate=http://localhost:8080/patient-lookup/participant/{identifier}/onyx.xml
     91}}}
     92
     93The following settings should be set appropriately to access the database:
     94{{{
     95# MySQL
     96org.obiba.onyx.datasource.driver=com.mysql.jdbc.Driver
     97org.obiba.onyx.datasource.url=jdbc:mysql://localhost:3306/briccs01
     98org.obiba.onyx.datasource.username=someuser
     99org.obiba.onyx.datasource.password=********
     100org.obiba.onyx.datasource.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
     101org.obiba.onyx.datasource.validationQuery=SELECT 1;
     102org.obiba.onyx.datasource.testOnBorrow=true
     103}}}
    83104