Versions Compared

Key

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

...

Command: sudo chmod -R hydep:deploy /var/sufia

 

Redis

Redis keeps a database in memory which handles, as far as we currently know (8/1/16), the transaction record data such as the history of edits on a record. It does not contain the actual data, simply the timeline of changes.

redis-dump.rdb must be copied from S3 over to the machine.

It must be changed to be owned by redis: sudo chmod -R redis:redis filename

Then you will need to stop the redis server (sudo service redis-server stop)

Move redis-dump.rdb to /var/lib/redis/dump.rdb (overwriting the file there called dump.rdb)

Restart redis (sudo service redis-server start)

When starting up redis will read the .rdb dump file and copy that data back to the in memory database.

 

Indexing:

Finally you will need to follow the instructions for Reindexing Solr in Hydra under Application Administration to index all the data so it shows up in Hydra.

...