Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add path argument to make-handle-config, set off in 'code' block

...

A Handle server runs as a separate process that receives TCP requests from other Handle servers, and issues resolution requests to a global server or servers if a Handle entered locally does not correspond to some local content. The Handle protocol is based on TCP, so it will need to be installed on a server that can broadcast and receive TCP on port 2641.

  1. Wiki MarkupTo configure your DSpace installation to run the handle server, run the following command:
    Code Block
     _\[dspace\]/bin/dspace make-handle-config \[dspace\]/handle-server
    Wiki Markup
    _ Ensure that \_\[dspace\]/handle-server\_ matches whatever you have in _dspace.cfg_ for the _handle.dir_ property.
  2. Wiki Markup
    Edit the resulting _\[dspace\]/handle-server/config.dct_ file to include the following lines in the _"server_config"_ clause: 
    Code Block
    "storage_type" = "CUSTOM"
    "storage_class" = "org.dspace.handle.HandlePlugin"
    
    This tells the Handle server to get information about individual Handles from the DSpace code.
  3. Once the configuration file has been generated, you will need to go to http://hdl.handle.net/4263537/5014 to upload the generated sitebndl.zip file. The upload page will ask you for your contact information. An administrator will then create the naming authority/prefix on the root service (known as the Global Handle Registry), and notify you when this has been completed. You will not be able to continue the handle server installation until you receive further information concerning your naming authority.
  4. Wiki Markup
    When CNRI has sent you your naming authority prefix, you will need to edit the _config.dct_ file. The file will be found in _/\[dspace\]/handle-server_. Look for _"300:0.NA/YOUR_NAMING_AUTHORITY"_Replace \_YOUR_NAMING_AUTHORITY_ with the assigned naming authority prefix sent to you.
  5. Now start your handle server (as the dspace user):
    Code Block
    [dspace]/bin/start-handle-server
    Note that since the DSpace code manages individual Handles, administrative operations such as Handle creation and modification aren't supported by DSpace's Handle server.

...