Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
The below instructions are a work in progress. The will be updated to reflect the location of the indices for ACT Ontology Version 4.0.0
Note
Tip

Before downloading and unzipping the Lucene index files required by the SHRINE web client, be sure you have at least

...

3.5 GB available.

...

Note

For the reference adapter mappings file associated with this ontology

...

version (4.0.0), see: https://

...

app.box.com/s/

...

kq4opwfbl4nphrf2n9msjo96loap56qt/file/

...

818049025003. Please note that any local customization will need to be re-applied to this new adapter mappings file.

First, Stop Tomcat. Change directory to /opt/shrine/tomcat/lib.  Download and unpack the Lucene index archive files. Be sure to set the user and group ownership of the Lucene index files to the account that is running the SHRINE application (by default, this should be the "shrine" user).  Finally, clean up the zip files.  Remember that everything in /opt/shrine must have the user and group ownership set to the shrine user.

Code Block
languagebash
themeRDark
cd /opt/shrine/tomcat/lib

wget https://shrine-act-artifactsontologies.s3.amazonaws.com/act/lucene-indicesreleases/lucene_index-4.0.0-SHRINE-3.1.0.zip -O lucene_index.zip
wget https://shrine-act-artifactsontologies.s3.amazonaws.com/act/lucene-indicesreleases/suggest_index-4.0.0-SHRINE-3.1.0.zip -O suggest_index.zip

unzip luceneunzip lucene_index.zip
unzip suggestunzip suggest_index.zip

chown -R shrine:shrine lucene_index
chown -R shrine:shrine suggest_index

rm lucene_index.zip suggest_index.zip

...