Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

shrine.conf is considerably more compact than in SHRINE 1.25.4, and slightly more compact than in SHRINE 3.0.0. This may be an opportunity to clean out the file in older installations. See the example file in shrine-setup/qep-and-adapter-shrine.conf .

Remove broadcasterServiceEndpoint

Shrine no longer uses broadcasterServiceEndpoint. Delete that from shrine.conf to save confusion.

Set the ontology version term for the ACT ontology

Code Block
languagejs
themeRDark
shrine {
...
  ontology {
    //term to use to look up the version of the ontology
    versionTerm = "\\SHRINE\\SHRINE\\ONTOLOGYVERSION" 
  }
...
}


Add a Timezone Parameter to mysql URLs in conf/context.xml

Inside /opt/shrine/tomcat/conf/context.xml, add a ?serverTimezone=UTC parameter to each mysql URL. (No change is needed if you are using a different brand of database.)

Code Block
languagexml
themeRDark
...
<Context>
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
    <Resource name="jdbc/problemDB" auth="Container" type="javax.sql.DataSource"
              maxTotal="128" maxIdle="32" maxWaitMillis="10000"
              username="shrine" password="demouser" driverClassName="com.mysql.jdbc.Driver"
              url="jdbc:mysql://localhost:3306/shrine_query_history?serverTimezone=UTC"
              testOnBorrow="true" validationQuery="SELECT 1" />
...