-
Notifications
You must be signed in to change notification settings - Fork 31
Upgrading META SHARE
Please see the META-SHARE Installation Manual for detailed guidelines.
Unless you have made any changes to the installation files of your META-SHARE v3.0 installation, upgrading from v3.0 to the new release should be more or less simple:
-
Stop your META-SHARE v3.0 server (
./stop-server.sh
undermetashare/
). -
Rename your META-SHARE v3.0 installation directory. Download the new META-SHARE version and extract it to an empty directory with the name of the previous installation directory.
-
Copy your v3.0
local_settings.py
file (undermetashare/
) to the new installation. If yourSTORAGE_PATH
setting should point to a directory undermetashare/
, then copy/move your storage folder to the new installation, too. -
Add the new
LOCK_DIR
setting to yourlocal_settings.py
file as specified in the newlocal_settings.sample
file. -
Make sure to use corrected
UPDATE_INTERVALS
settings in yourlocal_settings.py
file, e.g., as specified in the currentlocal_settings.sample
file. -
Recreate your search index. Under
metashare/
run:
./start-solr.sh
python27 manage.py rebuild_index --noinput
./stop-solr.sh
- Start your new server (
./start-server.sh
undermetashare/
).