I'm setting up a development box on an Athlon 64 box with FC4 x86_64 installed. I'm assuming this isn't a 64-bit error because of the messages I'm getting. I recently installed CFMX 6.1 successfully, but I'm having startup errors.
Code:
[root@winona2 init.d]# ./coldfusionmx start
ln: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
ps: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
Starting ColdFusion MX...
There may be a few moments before you can access the ColdFusion MX administrator. This is normal.
sleep: error while loading shared libraries: libm.so.6: cannot open shared object file: No such file or directory
ps: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
There has been an error starting ColdFusion MX, please check the logs.
I checked the logs...
Code:
[root@winona2 coldfusionmx]# cat logs/cfserver.log
su: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
su: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
Google says all of those libraries are part of glibc. I downloaded RPMs for 32 and 64-bit glibc, glibc-headers, glibc-devel and installed them all. I had some installed previous thru yum (for my Oracle 10 install) and the 32-bit packages didnt install because of version conflicts with the 64-bit ones, but it shouldn't be a problem.
I looked in the /lib folder for the aforementioned files and they're there!
Code:
[root@winona2 lib]# ls -l
total 5692
...
-rwxr-xr-x 1 root root 1433376 May 30 08:41 libc-2.3.5.so
-rwxr-xr-x 1 root root 25920 May 30 08:41 libcrypt-2.3.5.so
lrwxrwxrwx 1 root root 17 Sep 7 12:54 libcrypt.so.1 -> libcrypt-2.3.5.so
lrwxrwxrwx 1 root root 13 Sep 7 13:20 libc.so.6 -> libc-2.3.5.so
...
-rwxr-xr-x 1 root root 198812 May 30 08:41 libm-2.3.5.so
lrwxrwxrwx 1 root root 13 Sep 7 12:54 libm.so.6 -> libm-2.3.5.so
...
I exported LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib and still no success. Anyone have any ideas or know how I can get this to work? I can't try CFMX 7 because our production box is running 6.1.
Thanks in advance!!