RE: AW: configuration problem

2003-07-15 Thread Ralph Einfeldt
strace is a standard linux program that prints out system calls.
(Like truss under solaris)

You can either attach it to a running process 
or trace a program from scratch.


Sources for information:
  man strace

  http://www.wi.leidenuniv.nl/~wichert/strace/
  http://www.die.net/doc/linux/man/man1/strace.1.html

  http://www.google.de/search?q=linux+strace

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, July 15, 2003 4:04 PM
> To: Tomcat Users List
> Subject: RE: AW: configuration problem
> 
> 
> hm, may be it sound's like I'm a little bit stupid but... can 
> you tell me 
> howto or even better where to read?
> 
> thanx
> andreas
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: AW: configuration problem

2003-07-15 Thread awischer
hm, may be it sound's like I'm a little bit stupid but... can you tell me 
howto or even better where to read?

thanx
andreas

RE: AW: configuration problem

2003-07-15 Thread Ralph Einfeldt
Try to strace the tomcat process to find out where 
tomcat is looking for the library.

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, July 15, 2003 2:53 PM
> To: Tomcat Users List
> Subject: Re: AW: configuration problem
> 
> 
> both library's are precompiled and are delivered as part of 
> the domino server  without sourcecode. So, there is no chance 
> to change it. 
> Adding the library path to CLASSPATH dosen't really help. 
> This is the part of catalina.sh i've changed for getting the 
> second error message:
> 
> ---schnipp--
>   "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS \
>   -Djava.library.path="$PATH":/opt/lotus/notes/latest/linux: \
>   -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath 
> /opt/lotus/notes/latest/linux:"$CLASSPATH" \
>   -Dcatalina.base="$CATALINA_BASE" \
>   -Dcatalina.home="$CATALINA_HOME" \
>   -Djava.io.tmpdir="$CATALINA_TMPDIR" \
>   org.apache.catalina.startup.Bootstrap "$@" start \
>   >> "$CATALINA_BASE"/logs/catalina.out 2>&1 &
> ---schnapp---
> 
> any other idea ??
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: AW: configuration problem

2003-07-15 Thread awischer
both library's are precompiled and are delivered as part of the domino 
server  without sourcecode. So, there is no chance to change it. 
Adding the library path to CLASSPATH dosen't really help. 
This is the part of catalina.sh i've changed for getting the second error 
message:

---schnipp--
  "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS \
  -Djava.library.path="$PATH":/opt/lotus/notes/latest/linux: \
  -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath 
/opt/lotus/notes/latest/linux:"$CLASSPATH" \
  -Dcatalina.base="$CATALINA_BASE" \
  -Dcatalina.home="$CATALINA_HOME" \
  -Djava.io.tmpdir="$CATALINA_TMPDIR" \
  org.apache.catalina.startup.Bootstrap "$@" start \
  >> "$CATALINA_BASE"/logs/catalina.out 2>&1 &
---schnapp---

any other idea ??