Versions Compared

Key

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

Before downloading and unzipping the Lucene index files, be sure you have at least 2.5 GB available.

Make a directory for the Lucene index files, download, and unpack them. Then clean upBe sure to set the owner and group 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.

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

wget https://shrine-act-artifacts.s3.amazonaws.com/lucene-indices/lucene_index-2.0.1-cov3-07-14-2020.zip -O lucene_index.zip
wget https://shrine-act-artifacts.s3.amazonaws.com/lucene-indices/suggest_index-2.0.1-cov3-07-14-2020.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