Versions Compared

Key

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

...

  1. Create a few repository users
    Log in as an administrator to your eagle-i repository at https://your.server/repository/admin . Navigate to the Manage User Accounts page and create the following users:
    1. an anonymous user with no roles, to be used by the search application
    2. a sample user with Resource Navigator role (to collect data)
    3. a sample user with Curator role (to curate and publish data)
  2. Create eagle-i application home and configuration directory
    Create a directory to place eagle-i application data and configuration files. You may want to reuse part of the path used when installing the eagle-i repository. For example, if you installed the repository in {{ /opt/eaglei/repo}}, 
    Code Block
    mkdir /opt/eaglei/conf
    
  3. edit catalina.properties 
    Open the file ${CATALINA_HOME/conf/catalina.properties in your favorite text editor. 
    Add the eagle-i configuration directory to the common class loader. Note that catalina.properties should already have a common.loader definition, you only need to add the eagle-i configuration directory, for example:
    Code Block
    common.loader=${catalina.base}/opt/eaglei/conf,${catalina.base}/lib,...
    
    Add the definition of the eagle-i home property, where the conf directory was created. This needs to be the full path, without using variables, for example:
    Code Block
    org.eaglei.home=/opt/eaglei
    

...