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

Compare with Current View Page History

« Previous Version 4 Next »

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

Before downloading and unzipping the Lucene index files, be sure you have at least 2.5 GB available. In the steps below, you will retrieve the index files used by the SHRINE web client. For the adapter mappings file associated with this ontology release version, see: https://pitt.app.box.com/s/qoj5afssw4oz3v27ipmfidhitmgya9nt/file/814244487296

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.

cd /opt/shrine/tomcat/lib

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

unzip lucene_index.zip
unzip suggest_index.zip

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

rm lucene_index.zip suggest_index.zip


Note: If your system uses a different directory other than /opt/shrine/tomcat/, then it is recommended to make the following change below to your shrine.conf. This will help the Shrine  webclient locate the lucene_index files. By default the system looks for the lucene_index in the /opt/shrine/tomcat/lib directory. 

lucene {

directory = "/path to shrine/tomcat/lib/lucene_index"

suggestDirectory = "/path to shrine/tomcat/lib/suggest_index"

}

Not doing this will result in the following webclient error: Error connecting to: "https://shrinehost/shrine-api/ontology/filterOptions"

After you have completed the above steps, restart Tomcat.



  • No labels