Posts

Showing posts from October, 2013

Installing Saprfc on CentOS 6

Our PHP web servers were powered by Linux, either Red Hat Enterprise Linux or CentOS Linux. Normally we use 5.x version of CentOS or RHEL, but after a few years running 5.x we decided that its now time to upgrade to 6.x. The first problem we encounter is that the SAPCAR utility shows loading shared libraries error. ./SAPCAR_1-20002087.EXE RFC_45-10003377.SAR ./SAPCAR_1-20002087.EXE: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory Checking the EXE file (actually is a Linux ELF binary but with misleading extension) with LDD, we find that : [root@myserver opt]# ldd SAPCAR_1-20002087.EXE         linux-gate.so.1 =>  (0x00e81000)         libdl.so.2 => /lib/libdl.so.2 (0x00d05000)         librt.so.1 => /lib/librt.so.1 (0x00317000)         libstdc++.so.6 => not found         libm.so.6 => /lib/libm.so.6 (0x003b0000)         libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x0083d000)         libpthread.so.0 =&g