Versions Compared

Key

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

...

Requirement
Minimum Version
Notes
Operating SystemRHEL 7, Fedora 20 and above, Centos 7, Amazon Linux AMI 
PostgreSQLDistribution version
 yum install \
    postgresql postgresql-contrib \
    postgresql-odbc postgresql-pl-perlplperl \
    postgresql-server
IFI CLAIMS Repository 
RHEL/Centos 7
yum install \
https://repo.ificlaims.com/ifi-claims-direct/centos/7/x86_64/ifi-claims-direct-beta-0.0.1-1.el7.centos.x86_64.rpm
Amazon Linux
yum install \
https://repo.ificlaims.com/ifi-claims-direct/amazon/x86_64/ifi-claims-direct-beta-0.0.1-1.amzn1.x86_64.rpm 
Fedora
yum install \
https://repo.ificlaims.com/ifi-claims-direct/fedora/2527/x86_64/ifi-claims-direct-beta-0.0.2-1.fc25.x86fc27x86_64.rpm


Note
titlelibxml2

Some CLAIMS Direct loading and maintenance code utilizes the PostgreSQL perl extension (plperl) as well as a heavy reliance on the libxml2 XML parsing library. The following table lists some inconsistent behavior with disparate versions of PostgreSQL and libxml2.

8.4.62.7.8works
9.1.22.7.8works
9.1.42.7.8works
9.1.72.7.8fails
9.2.42.9.1works
9.3.12.7.6fails
9.3.22.9.1works

No PostgreSQL version compiled with libxml2 < 2.7.8 works and additionally, PostgreSQL 9.1.7 fails even with libxml2 2.7.8

IFI CLAIMS has produced a patched release of libxml2 as an RPM. It is highly recommended to update libxml2 from the IFI CLAIMS software repository. For additional distributions, please contact support@ificlaims.com.

...

Code Block
# for each table, load ...
gunzip -c data/<table>.gz | psql -Ualexandria alexandria
 
# sample batch script
for tbldata in $(ls data/*.gz); do
  gunzip -c $tbldata | psql -Ualexandria alexandria
done

Creating the Credentials Database for CDWS

...