DUCC Project Documentation
Quick Start
Instructions on how to fetch, build and install DUCC 1.0 for single host system (my laptop!)
See DUCC Project Documentation for further details.
The following steps were performed on Red Hat Enterprise Linux Workstation release 6.4 (Santiago)
Prerequisites
- Install svn
- Install mvn
- Install jdk (1.6 or better)
export JAVA_HOME=~/apps/java/java-home
note: be sure to fetch and install the Unrestricted JCE Policy files in JAVA_HOME/jre/lib/security - Install latex
- Install ant
Permit universal read+execute access to user degenaro's home directory
[degenaro] sudo su root
[root] cd /home
[root] chmod 755 degenaro
[root] exit
[degenaro]
Start sshd
[degenaro] sudo su root
[root] chkconfig sshd on
[root] /sbin/service sshd restart
[root] exit
[degenaro]
Create user ducc
[degenaro] sudo adduser ducc
Insure JAVA_HOME is set
Sample code to set JAVA_HOME
# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # User specific aliases and functions export JAVA_HOME=~/apps/java/java-home
Fetch DUCC from svn
[degenaro] svn co https://svn.apache.org/repos/asf/uima/sandbox/uima-ducc/trunk ~/svn/ducc/trunk
Build DUCC jars
[degenaro] cd ~svn/ducc/trunk
[degenaro] mvn clean install
Install
[degenaro] cd target
[degenaro] sudo su ducc
[ducc] tar -zxf uima-ducc-1.0.0-SNAPSHOT-bin.tar.gz -C ~ducc
[ducc] cd ~
[ducc] ln -s apache-uima-ducc-1.0.0-SNAPSHOT/ducc_runtime ducc_runtime
[ducc] cd ducc_runtime/admin
[ducc] ./ducc_post_install
This is a work in progress...more to come soon (Lou 11/05/2013)