Difference between revisions of "SUNScholar/Researcher Identification/5.X/ORCID"

From Libopedia
Jump to navigation Jump to search
m
Line 3: Line 3:
 
</center>
 
</center>
  
===Step 1 - Enable the ORCID authority control plugin===
+
==Step 1 - Enable the ORCID authority control plugin==
 
Edit the following file:
 
Edit the following file:
 
  nano $HOME/{{Source}}/dspace/config/dspace.cfg
 
  nano $HOME/{{Source}}/dspace/config/dspace.cfg
Line 14: Line 14:
 
</pre>
 
</pre>
  
===Step 2 - Configure the plugin===
+
==Step 2 - Configure the plugin==
 
Search for <tt>'''ORCID based authority control'''</tt> and uncomment the hashes.
 
Search for <tt>'''ORCID based authority control'''</tt> and uncomment the hashes.
  
Line 26: Line 26:
 
</pre>
 
</pre>
  
===Step 3 - Enable the authority event listener===
+
==Step 3 - Enable the authority event listener==
 
Search for the following and ensure the "default" listener includes "authority".
 
Search for the following and ensure the "default" listener includes "authority".
 
  event.dispatcher.default.consumers = authority, versioning, discovery, eperson, harvester
 
  event.dispatcher.default.consumers = authority, versioning, discovery, eperson, harvester
  
===Step 4 - Rebuild DSpace===
+
==Step 4 - Rebuild DSpace==
 
[[SUNScholar/Rebuild_DSpace|'''Click here''']] to rebuild DSpace.
 
[[SUNScholar/Rebuild_DSpace|'''Click here''']] to rebuild DSpace.
  
===Step 5 - Import existing authorities===
+
==Step 5 - Import existing authorities==
 
After the rebuild, populate the authority index by running the following script:
 
After the rebuild, populate the authority index by running the following script:
 
  $HOME/bin/dspace index-authority
 
  $HOME/bin/dspace index-authority
  
===References===
+
==References==
 
*https://wiki.duraspace.org/display/DSDOC5x/ORCID+Integration
 
*https://wiki.duraspace.org/display/DSDOC5x/ORCID+Integration

Revision as of 18:57, 3 June 2015

BACK TO RESEARCHER IDENTIFICATION

Step 1 - Enable the ORCID authority control plugin

Edit the following file:

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

Search for ORCID authority control and remove comments to enable.

See example below.

plugin.named.org.dspace.content.authority.ChoiceAuthority = \
    org.dspace.content.authority.SolrAuthority = SolrAuthorAuthority

Step 2 - Configure the plugin

Search for ORCID based authority control and uncomment the hashes.

See example below.

solr.authority.server=${solr.server}/authority
choices.plugin.dc.contributor.author = SolrAuthorAuthority
choices.presentation.dc.contributor.author = authorLookup
authority.controlled.dc.contributor.author = true
authority.author.indexer.field.1=dc.contributor.author

Step 3 - Enable the authority event listener

Search for the following and ensure the "default" listener includes "authority".

event.dispatcher.default.consumers = authority, versioning, discovery, eperson, harvester

Step 4 - Rebuild DSpace

Click here to rebuild DSpace.

Step 5 - Import existing authorities

After the rebuild, populate the authority index by running the following script:

$HOME/bin/dspace index-authority

References