Versions Compared

Key

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

 

Table of Contents
maxLevel2

...

Scope

Fixes of bugs in OpenDataNode components (UnifiedViews, Midpoint, debian installation/configuration)

Time frame

  - 12  

Details

Main fixed bugs in ODN v1.0.3 listed in  Open Data Node github

Release

Open Data Node v1.0.3 was released 12  . It consist of following versions of components:

Debian packages are available at: https://packages.comsode.eu/debian/

...

  1. Configure Debian as follows:

    1. if FQDN is defined, the host has to be visible from external network, (e.g. if FQDN is odn.example.com then the host must be visible both through http and https via http://odn.example.com and https://odn.example.com) 

    2. if FQDN is not defined, the host has to be visible from external network, (e.g. if hostname is example then the host must be visible both through http and https via http://example and https://example) 

      How to set FQDN 

      Code Block
      languagebash
      # get ip address of host
      IP_ADDRESS=`/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'`
      # set FQDN - where host is accessible via  my-computer.my-domain.ext 
      echo "$IP_ADDRESS  my-computer.my-domain.ext my-computer " >> /etc/hosts
      # verify 
      hostname -A

       

       


  2. Add ODN packages repository into apt-sources-list: 

    Code Block
    languagebash
    echo "deb http://packages.comsode.eu/debian/ wheezy main" > /etc/apt/sources.list.d/odn.list
  3. Add ODN public key: 

    Code Block
    wget -O - http://packages.comsode.eu/key/odn.gpg.key | apt-key add -
  4. Update apt sources: 

    Code Block
    aptitude update
  5. Use either option a for new installation of ODN or option b for upgrade to newer version of ODN:

    1. install ODN box: 

      Code Block
      aptitude install odn-simple
    2. upgrade ODN box: 

      Code Block
      aptitude upgrade

...

Component

UsernamePasswordRole in componentODN roleNote
ODN
Anchor
ODN
ODN
casadminPassw0rd  user used in other components, logged in via ODN/PublicCatalogCAS
ODN/midpointsee ODNsee ODN ODN userlogin to idm through cas
ODN/midpointadministrator5ecr3t Administratorlogin to idm without cas or ldap - via https://host/midpoint/login
ODN/PublicCatalogadminadminCKAN sysadminadminadminCKAN sysadmin ODN/cascasadminPassw0rd  
ODN/InternalCatalogsee ODN/CASsee ODN/CASCKAN editor, Data Publisher  
Unified Viewssee ODN/CASsee ODN/CASAdministrator, User  
ODN/midpointadministrator5ecr3t ODN user Administrator
Hostuploaderuploader

Publisher

 

 

upload dumps to /var/www/dump - DPU: uv-l-filesUpload can upload dumps. Dumps are accessible via https://host/dump/dump.zip

upload graphs to /var/cache/virtuoso/upload - DPU: uv-l-filesToVirtuoso can upload graphs from the path to virtuoso

 

casadmin is used as standard user to work with OpenDataNode. Further users can be created in midpoint.

(warning)You are strongly advised to change them passwords right after installation. (TODO: add short description about how to change passwords)

Known issues

  • L-Catalog DPU is included in the installation accidentally, it shall be removed manually from UnifiedViews

 N/A

Troubleshooting

Java 7 support

...