Hello,
OS is CentOS 5.
I installed Lotus Domino, and upon starting it as instructed, I got this error:
Code:
[notes@testsrv notesdata]$ /opt/ibm/lotus/bin/server
/opt/ibm/lotus/notes/latest/linux/tunekrnl: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
/opt/ibm/lotus/notes/latest/linux/server: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
I thought this was a problem with the library not being found, so I located libstdc++.so.5 and created a symlink:
Code:
root@testsrv /usr/lib $ ln -s /usr/lib/libstdc++.so.5 /usr/local/lib/libstdc++.so.5
But that did not fix the problem:
Code:
[notes@testsrv notesdata]$ /opt/ibm/lotus/bin/server
/opt/ibm/lotus/notes/latest/linux/tunekrnl: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: Error 40
/opt/ibm/lotus/notes/latest/linux/server: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: Error 40
A quick google suggests that the command to fix this is
Code:
yum install compat-libstdc++
However this is what I get:
Code:
root@testsrv /usr/lib $ yum install compat-libstdc++
Loading "installonlyn" plugin
Setting up Install Process
Setting up repositories
kbs-CentOS-Extras 100% |=========================| 951 B 00:00
base 100% |=========================| 1.1 kB 00:00
updates 100% |=========================| 951 B 00:00
addons 100% |=========================| 951 B 00:00
extras 100% |=========================| 1.1 kB 00:00
Reading repository metadata in from local files
primary.xml.gz 100% |=========================| 323 kB 00:01
updates : ################################################## 731/731
Added 8 new packages, deleted 0 old in 0.62 seconds
Parsing package install arguments
Nothing to do
Any ideas on what is wrong here?
Any help appreciated!