Versions Compared

Key

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

...

5. 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.

Warning
titleWarning

If you are using Fedora, you must use version 27 or below. Installing Fedora v28 and above will install a version of PostgreSQL that is incompatible with CLAIMS Direct.

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

If you are using Fedora, enter the following code:

Code Block
yum --best --allowerasing update

If you are using AWS Linux, enter the following code:

...

languagetext

...

.

...

For other operating systems, enter the following code:

Code Block
yum --allowerasing update


Note

Note: Reboot if kernel was upgraded.

...

Code Block
initdb -A trust \
       -D /var/lib/pgsql/data \
       -E utf8

8. As root, restart postgresql.

Code Block
languagetext
systemctl restart postgresql.service

9. Using a text editor, modify the IP addresses in the following configuration files.

...

Note

Note: If you already have an initialized cluster, please be certain that local access is enabled for stand-alone installation. In either distributed install, if a separate services machine is created, its IP address needs access. This is imperative for the client update procedures.

109. Enable and restart the PostgreSQL cluster.

Code Block
systemctl enable postgresql.service ; systemctl restart postgresql.service

1110. Create the role alexandria.

Code Block
languagetext
echo "create role alexandria with superuser login" | psql -U postgres postgres

1211. Change the directory to the mounted USB file system and create the database. If desired, you can redirect errors (if any) to LOG.2.

Code Block
languagetext
cat alexandria-dwh.sql | psql -U alexandria postgres 2>/tmp/LOG.2

1312. To ensure that the database has been created, run:

...

Code Block
languagetext
                 List of databases      
Name       |  Owner    | Encoding |   Collate  |    Ctype    |  Access privileges
-----------------+------------+----------+-------------+-------------+-----------------------
alexandria |alexandria | UTF8     | en_US.UTF-8| en_US.UTF-8 |                                		                                                                                                 
postgres   |postgres   | UTF8     | en_US.UTF-8| en_US.UTF-8 |  
template0  |postgres   | UTF8     | en_US.UTF-8| en_US.UTF-8 |=c/postgres          +      
 		   |           |          |            |             | postgres=CTc/postgres
template1  |postgres   | UTF8     | en_US.UTF-8| en_US.UTF-8 |=c/postgres          +       
           |           |          |            |             | postgres=CTc/postgres

1413. Run the pre-flight check script to confirm that your system is properly configured to load the data.

...

Resolve any recognized errors. For unfamiliar errors, please contact support@ificlaims.com.

1514Use the load script to load the CLAIMS Direct data into PostgreSQL tables. Since the loading process will take 1-2 days, we recommend that you detach the script from the terminal to allow it to run in the background. Edit the IP address in the command to reflect the IP address where postgres is installed.

Code Block
nohup bash ./load.sh xxx.xxx.xxx.xxx alexandria &

1615. Use the ps command periodically to check whether the load.sh process has completed.

Note

Note: If you want to check on the process while it is running, use the following command to show the progress of the tables which are being copied:

Code Block
ps -eaf |grep COPY


1716. Once the loading process is complete, you can run the count.sh script, a simple QA of table counts, to ensure that the tables have loaded correctly. Modify the IP address to reflect the postgresql server. This may take an hour or more to run.

...

More information about the tables can be seen in Data Warehouse Design.

1817. Optional: you may want to run a simple SQL query as an additional test to confirm that the data is present.

...