Products | Versions |
---|---|
TIBCO API Exchange | 2.5.0 |
The below chapter in the Documentation mentions the requirement of compat-libstdc++ libraries:
Installation > Installing TIBCO API Exchange Gateway > UNIX Installation Guidelines
After 2.5.0 is installed, the engine does not start with the below error:
./asg-engine: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory.
On the latest Linux version these libraries are not present by default.
This can be confirmed by running ldd. Here is the sample output:
-----------
ldd asg-engine
linux-vdso.so.1 => (0x00007ffdc72ec000)
libnsl.so.1 => /lib64/libnsl.so.1 (0x00007f6870c4d000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007f6870a49000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f687082c000)
libstdc++.so.5 => not found
libm.so.6 => /lib64/libm.so.6 (0x00007f687052a000)
libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007f6870313000)
libc.so.6 => /lib64/libc.so.6 (0x00007f686ff50000)
/lib64/ld-linux-x86-64.so.2 (0x00005575943de000)
------------