PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : ColdFusion Server installieren



mortal
17.12.02, 18:24
Hallo!

Ich habe ein Problem bei der Installation eines Coldfusionservers. Nachdem ich die bin Datei ausführe, bekomme ich folgende Fehlermeldung:


Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
/bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

Launching installer...

rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

Ich benutzte Suse 8.1 und bin noch nicht sehr mit Linux vertraurt.

Gruß,
Markus

Jorge
17.12.02, 18:34
Ist doch eindeutig: Dir fehlt unter /usr/lib die entsprechende libc.so.6 / librt.so.1. Erstelle einfach jeweils einen Link:



carsten@[cws-lx:/usr/lib]# ls -l libc.* librt*
-rw-r--r-- 1 root root 2686818 13. Feb 2002 libc.a
-rw-r--r-- 1 root root 178 13. Feb 2002 libc.so
-rw-r--r-- 1 root root 54122 13. Feb 2002 librt.a
-rw-r--r-- 1 root root 56846 13. Feb 2002 librt_p.a
lrwxrwxrwx 1 root root 20 13. Feb 2002 librt.so -> ../../lib/librt.so.1
carsten@[cws-lx:/usr/lib]#
carsten@[cws-lx:/usr/lib]# ln -s libc.so libc.so.6
carsten@[cws-lx:/usr/lib]# ln -s librt.so librt.so.1
carsten@[cws-lx:/usr/lib]#

mortal
17.12.02, 18:53
Hui!
X-tremly thanx für die schnelle Antwort! Aber so ganz verstehe ich das noch nicht. Ich kann doch nicht einfach nen Link auf ne andere Datei zeigen lassen. Schliesslich steht da doch was ganz anderes drin, oder?

Nun, auf jeden Fall ging es bei der Installation ein bisschen weiter, aber er hängt nun hier:



Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
dirname: error while loading shared libraries: /usr/lib/libc.so.6: invalid ELF header
/bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: /usr/lib/libc.so.6: invalid ELF header
dirname: error while loading shared libraries: /usr/lib/libc.so.6: invalid ELF header
basename: error while loading shared libraries: /usr/lib/libc.so.6: invalid ELF header

Launching installer...

rm: error while loading shared libraries: /usr/lib/libc.so.6: invalid ELF header
rm: error while loading shared libraries: /usr/lib/libc.so.6: invalid ELF header

Ich habe diese beiden Links gesetzt:
linux:/usr/lib # ln -s librt.so libc.so.6
linux:/usr/lib # ln -s librt.so librt.so.1

thanx,
Markus