Versions Compared

Key

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

...

Note

Note: It is recommended to copy and paste the code provided in these instructions.

1. Install  If you are using CentOS, add the epel repository. Otherwise, continue to step 2.

Code Block
languagetext
yum -y install epel-release

2. Install the appropriate repository for your operating system using the command listed in the Repository column below. If necessary, adjust the code to reflect the version you are using.

23. After installing the repository, run a yum update to pull in the patched version of libxml2 from the IFI CLAIMS repository.

...

Note

Note: If there are conflicts, change the command line to yum –-best --allowerasing update as directed. Reboot if kernel was upgraded.

34. Install the Alexandria client tools package.

Code Block
yum -y install perl-Alexandria-Client-Tools

45. Run acfg to make sure the tools can see the configuration file correctly.

...

Code Block
languagetext
Using configuration from: /usr/share/perl5/vendor_perl/auto/share/dist/Alexandria-Library/alexandria.xml
 
 
Configured databases:
    alexandria: [alexandria; 192.168.10.9; 5432]
    customers: [customers; 10.234.1.25; 5432]
 
 
Configured Indices:
    alexandria (http://192.168.10.61:8080/alexandria-v2.1):

56. If you want a central location for the configuration file which is immune to software updates, copy it to /etc.

...

Note

Note: If you are installing the client tools on a different machine from your PostgreSQL instance, you will need to change the database entry in the configuration file etc/alexandria.xml, e.g., the default should reflect the host (IP address) of your PostgreSQL instance. If you added a password for user alexandria (or changed user at all), you would modify @user/@password entries as well. For example, if your PostgreSQL instance is running on 10.234.211.3, the configuration entry would look like this:

Code Block
<database name="alexandria" host="10.234.211.3" port="5432" user="alexandria" password="alexandria">
      <atts pg_errorlevel="0" AutoCommit="1" RaiseError="1" PrintError="0" LongTruncOk="0" LongReadLen="10485760" />
     </database>


67. Test the update process.

...

Code Block
languagetext
[localhost] [2018/06/23 04:28:57] [INFO      ] [total load-ids available: 170438 (start=125234 end=312262)]

78. Once you have completed the initial load of the database, test whether the update runs.

Code Block
apgup --user=USER --password=PASSWORD --update

89. Start the update daemon. See apgupd for more information.

...