Difference between revisions of "SUNScholar/Item Checksums"

From Libopedia
Jump to navigation Jump to search
(Created page with "<center> '''Back to Customisation''' </center>")
 
 
(10 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
  '''[[SUNScholar/Customisation|Back to Customisation]]'''
 
  '''[[SUNScholar/Customisation|Back to Customisation]]'''
 
</center>
 
</center>
 +
 +
==Introduction==
 +
Ensuring checksums for digital objects is an important part of digital curation.
 +
 +
==Configuration==
 +
Edit the following file:
 +
nano $HOME/{{Source}}/dspace/config/dspace.cfg
 +
Search for <tt>'''checker.retention'''</tt> and modify accordingly.
 +
 +
See example below.
 +
<pre>
 +
#### Checksum Checker Settings ####
 +
# Default dispatcher in case none specified
 +
plugin.single.org.dspace.checker.BitstreamDispatcher=org.dspace.checker.SimpleDispatcher
 +
 +
# check history retention
 +
checker.retention.default=1y
 +
checker.retention.CHECKSUM_MATCH=2w
 +
</pre>
 +
 +
==Tips==
 +
*http://wiki.lib.sun.ac.za/index.php/SUNScholar/Optimisations
 +
 +
==References==
 +
*https://wiki.duraspace.org/display/DSDOC5x/Configuration+Reference#ConfigurationReference-ChecksumCheckerSettings
 +
*https://wiki.duraspace.org/display/DSDOC5x/Validating+CheckSums+of+Bitstreams
 +
----
 +
*https://wiki.duraspace.org/display/DSDOC4x/Configuration+Reference#ConfigurationReference-ChecksumCheckerSettings
 +
*https://wiki.duraspace.org/display/DSDOC4x/Validating+CheckSums+of+Bitstreams
 +
----
 +
*https://wiki.duraspace.org/display/DSDOC3x/Validating+CheckSums+of+Bitstreams
 +
[[Category:Customisation]]

Latest revision as of 15:52, 29 May 2016

Back to Customisation

Introduction

Ensuring checksums for digital objects is an important part of digital curation.

Configuration

Edit the following file:

nano $HOME/source/dspace/config/dspace.cfg

Search for checker.retention and modify accordingly.

See example below.

#### Checksum Checker Settings ####
# Default dispatcher in case none specified
plugin.single.org.dspace.checker.BitstreamDispatcher=org.dspace.checker.SimpleDispatcher

# check history retention
checker.retention.default=1y
checker.retention.CHECKSUM_MATCH=2w

Tips

References