Versions Compared

Key

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

...

First, install the necessary repository configuration files:

Code Block
languagetext
# centos 7 needs an additional repository
yum install epel-release

# See full URLs above
yum install https://repo.ificlaims.com/ifi-alexandria/<distribution>/ifi-claims-direct...

...

Next, update the system:

Code Block
languagetext
yum update   # this update should pull libxml2 from our repository

...

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.

Code Block
languagetext
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

...

Installing the Client Library

Code Block
languagetext
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

...

Installing Client Tools

Code Block
languagetext
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

...