You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Hardware Requirements

CPU2-cores
System Memory8GB
Storage Capacity500GB (100GB SSD for fast temporary processing space)
Requirement
Recommended

 Software Requirements

Operating SystemRHEL 6, Fedora 20, Centos 6 
Development ToolsDistribution version
yum|dnf groupinstall "Development Tools"
System LibrariesDistribution version
yum|dnf install \
libxml2 libxml2-devel \
libxslt libxslt-devel
# Please see note below regarding libxml2
Perl and ModulesDistribution version
yum|dnf install \
perl-Module-Install \ perl-DBD-Pg \ perl-XML-LibXML \ perl-XML-LibXSLT \ perl-CPAN
Requirement
Minimum Version
Notes

CLAIMS Direct Software Installation

CLAIMS Direct software is a collection of Perl modules that interact with both the alexandria database and SOLR index to facilitate database updates from the primary server. Although not a requirement, it is highly recommended that a working cpan repository be enabled for automatic dependency resolution.

 

Enter the cpan configuration utility:
 
cpan
 
Would you like to configure as much as possible automatically? [yes] yes <==
 
What approach do you want?  (Choose 'local::lib', 'sudo' or 'manual')
 [local::lib] sudo <==
 
Would you like me to automatically choose some CPAN mirror
sites for you? (This means connecting to the Internet) [yes] yes <==
 
cpan[1]> exit

 

Download the Client Library and Tools packages

Please contact support for the newest available versions.

Installing the Client Library

 

tar zxvf Alexandria-Library-x.x.tar.gz
cd Alexandria-Library-x.x
perl Makefile.PL --alldeps
make
# NOTE: if, during the course of dependency resolution, you are prompted to accept an install, please accept (yes|y)
make test
# last line of output should be
#    Result: PASS
make install

 

Custom Configuration

The CLAIMS Direct software requires a main configuration file named "alexandria.xml" and "alexandria-log.conf". Default files are available under /usr/local/share/perl5/Alexandria/resources/. These should be positioned globally so all tools have access.

 

cp /usr/local/share/perl5/Alexandria/resources/*.* /etc

 

It is unnecessary to edit /etc/alexandria.xml, but feel free to customize logging (/etc/alexandria-log.conf). See http://search.cpan.org/~mschilli/Log-Log4perl-1.42/lib/Log/Log4perl.pm#Configuration_files

 

Installing Client Tools

 

tar zxvf Alexandria-Client-Tools-x.x.tar.gz
cd Alexandria-Client-Tools-x.x
perl Makefile.PL --alldeps
make
# NOTE: if, during the course of dependency resolution, you are prompted to accept an install, please accept (yes|y)
make test
# last line of output should be
#    Result: PASS
make install

 

 

  • No labels