[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] Raq550 ColdfusionMX install errors
- Subject: RE: [cobalt-users] Raq550 ColdfusionMX install errors
- From: "Ligard, Vidar" <vligard@xxxxxxxxx>
- Date: Tue Aug 26 07:28:07 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
*****************************************
Vidar Ligard
RHEMA Bible Church - Computer Information Systems
918 258 1588 x2490
*****************************************
> -----Original Message-----
> From: Brian Rahill [mailto:cobalt@xxxxxxxxxxxxxxxxxxxxxxx]
> Sent: Sunday, August 24, 2003 12:28 PM
> To: cobalt-users@xxxxxxxxxxxxxxx
> Subject: [cobalt-users] Raq550 ColdfusionMX install errors
>
>
> Hi All,
>
> I've followed the instruction in the archives and attempted
> to install
> ColdfusionMX (6.1) on my Raq550.
> The installed went okay except when I try to start coldfusion via
> "./coldfusion start"
> I get this:
> +++
> ln: /usr/i386-glibc21-linux/lib/libc.so.6: version
> `GLIBC_2.2' not found
> (required by ln)
> ps: error while loading shared libraries:
> /usr/i386-glibc21-linux/lib/libc.so.6: symbol
> _dl_debug_impcalls, version
> GLIBC_2.0 not defined in file ld-linux.so.2 with link time reference
>
> 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:
> /usr/i386-glibc21-linux/lib/libc.so.6: symbol
> _dl_debug_impcalls, version
> GLIBC_2.0 not defined in file ld-linux.so.2 with link time reference
> ps: error while loading shared libraries:
> /usr/i386-glibc21-linux/lib/libc.so.6: symbol
> _dl_debug_impcalls, version
> GLIBC_2.0 not defined in file ld-linux.so.2 with link time
> reference There has been an error starting ColdFusion MX,
> please check the logs.
> +++
>
> I see others have had similar problems but I haven't run
> across a solution.
>
Brian,
It looks like your coldfusion sysV script (the script you run to start CFMX) is failing already in line 30:
28 [ -f $CF_DIR/bin/jvm.config ] || {
29
30 ln -s $CF_DIR/runtime/bin/jvm.config $CF_DIR/bin/jvm.config
31
32 }
33
34
35 ps -e | grep -w [c]fusion > /dev/null 2>&1 && {
36 echo "Coldfusion MX is already running"
37 echo exiting
38 exit 2
39 }
40
41 echo "Starting Coldfusion MX..."
42
Then again, it's having troubles with the ps statement on line 35.
You can see this, because it is spitting out errors even before it displays the message "Starting Coldfusion MX..."
Try running those commands one by one outside of the script. I am wondering if it is something with your environment when the script is running.
Run these one by one and se what you get: (after you log in as root)
PATH=$PATH:/bin:/sbin:/usr/bin:/usr/sbin
CONNECTOR=""
RUNTIME_USER="apache"
JAVA_HOME="/opt/coldfusionmx/jre"
JAVA_EXECUTABLE="/opt/coldfusionmx/jre/bin/java"
DOCROOT="/var/www/html/"
CF_DIR="/opt/coldfusionmx"
LD_LIBRARY_PATH="$CF_DIR/lib:$CF_DIR/lib/_ilnx21/bin"
ln -s $CF_DIR/runtime/bin/jvm.config $CF_DIR/bin/jvm.config
Etc,etc. The lines in your script maight be different from mine, so don't copy and paste mine.
Vidar
> Any ideas?
>
> Thanks.
>
> Brian
>
> _____________________________________
> cobalt-users mailing list
> cobalt-users@xxxxxxxxxxxxxxx
> To subscribe/unsubscribe, or to SEARCH THE ARCHIVES, go to:
> http://list.cobalt.com/mailman/listinfo/cobalt> -users
>