ICU Libraries (Linux only)
ICU libraries are required for data and timestamp support in Linux.
A root user (or a user with root access privileges) is required to copy the files from the installation package and run the ld_config command.
Install the ICU libraries
-
Run the su command to switch to the root user.
-
Copy the .so files from the installation folder (within the ICU folder) to the /usr/local/lib64/ folder.
-
Create a new configuration file: /etc/ld.so.conf.d/intergrate.conf
Note: Both the .so files and the .conf file must have read permissions for all users.
-
Inside the configuration file, reference the location of the ICU libraries, for example: /usr/local/lib64/*
-
Enter the following ld_config command:
/sbin/ldconfig -v /usr/local/lib64/
Alternatively, edit ~/.bashrc or similar for the user used to run 1Integrate to include /usr/local/lib64 on the LD_LIBRARY_PATH, as in the following example:
# User specific
if [ -z "$LD_LIBRARY_PATH" ]; then
export LD_LIBRARY_PATH="/usr/local/lib64"
else
export LD_LIBRARY_PATH="/usr/local/lib64:$LD_LIBRARY_PATH"
fi