GGSCI: error while loading shared libraries: libnnz18.so: cannot open shared object file: No such file or directory
January 7, 2019 Leave a comment
Problem:
Oracle GoldenGate Software Command Interface (GGSCI) 18c raises error:
$ /GG_HOME/home_1/ggsci
/GG_HOME/home_1/ggsci: error while loading shared libraries: libnnz18.so: cannot open shared object file: No such file or directory
Cause:
GoldenGate put all necessary shared objects (.so files) under its own home directory, but several shared objects may not be found there. They should be borrowed from RDBMS or GI home.
Solution:
# find / -name libnnz18.so
/u01/app/18.3.0/grid/lib/libnnz18.so
/u01/app/18.3.0/grid/inventory/Scripts/ext/lib/libnnz18.so
Create symbolic link of the specidifed library in the Golden Gate home:
$ cd /GG_HOME/home_1
$ ln -s /u01/app/18.3.0/grid/lib/libnnz18.so libnnz18.so
Rerun ggsci.