the file /etc/profile should contain the default profile and environment
variables for the ksh, if I recall.

-----Original Message-----
From: Jim Urban [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 05, 2003 12:40 PM
To: 'Tomcat Users List'
Subject: RE: CGI environment vars


It's been years since I worked with unix (ok, aix).  However I do recall a
file .profile (I think it was in your home directory) which is where we set
our environment vars.  It was executed by the shell when you logged on.
Have you tried this?  If this is way off, please ignore it, I don't need to
be flamed (having a rough day).

Jim


-----Original Message-----
From: Tim Funk [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 05, 2003 1:28 PM
To: Tomcat Users List
Subject: Re: CGI environment vars

I haven;t seen this discussed yet, you are exporting your variables in
setenv.sh AND setenv.sh is located in $CATALINA_HOME/bin?

Example:
--------
export WACKY=very

or

ANSWER=42
export ANSWER
--------

-Tim


Madere, Colin wrote:
> Already tried this and it didn't work.  Both in the setenv.sh (checked for
> and read by catalina.sh) and startup.sh.  It seems that's for the Tomcat
> running environment but is not transferred to the CGIServlet's exec
> environment.
>
>
>>-----Original Message-----
>>From: Sean Dockery [SMTP:[EMAIL PROTECTED]]
>>Sent: Wednesday, February 05, 2003 11:44 AM
>>To:   Tomcat Users List
>>Subject:      RE: CGI environment vars
>>
>>What about setting the variable yourself in the catalina.sh script?  If
>>that doesn't work, make sure that the variable is exported (so that it
>>remains in the super shell when the sub shell exits).  Example:
>>
>>LD_LIBRARY_PATH=.../.../ld.so; export LD_LIBRARY_PATH;
>>
>>At 11:23 2003-02-05 -0600, you wrote:
>>
>>>no no.. I'm using the CGI facility in Tomcat (see Tomcat docs).  There's
>>
>>a
>>
>>>servlet set up to handle it already, and the CGI is getting executed but
>>
>>the
>>
>>>logs show that it's getting an error loading ld.so because it can't find
>>
>>it
>>
>>>(which is also the case when trying to run it in a shell without having
>>>LD_LIBRARY_PATH set appropriately).
>>>
>>>
>>>>-----Original Message-----
>>>>From: Filip Hanik [SMTP:[EMAIL PROTECTED]]
>>>>Sent: Wednesday, February 05, 2003 11:21 AM
>>>>To:   Tomcat Users List
>>>>Subject:      RE: CGI environment vars
>>>>
>>>>how about you do it yourself, I assume that you launch your CGI script
>>>>using Runtime.exec
>>>>in that case, use the method that
>>>>
>>>>http://java.sun.com/j2se/1.4.1/docs/api/java/lang/Runtime.html
>>>>
>>>>take a look at
>>>>
>>>>Runtime.exec(java.lang.String,java.lang.String[],java.io.File)
>>>>
>>>>-----Original Message-----
>>>>From: Madere, Colin [mailto:[EMAIL PROTECTED]]
>>>>Sent: Wednesday, February 05, 2003 8:44 AM
>>>>To: [EMAIL PROTECTED]
>>>>Subject: CGI environment vars
>>>>
>>>>
>>>>Tomcat 4.1.18 : UMN Mapserver CGI
>>>>
>>>>I have a CGI which needs to see the "LD_LIBRARY_PATH" to get to shared
>>>>libraries to run.  However, I can't seem to get whatever shell that
>>
>>Tomcat
>>
>>>>uses to run CGIs seeded with that variable.
>>>>
>>>>I tried putting it in the "setenv.sh" which is checked for and used in
>>>>catalina.sh, but that doesn't seem to have any effect on CGIs.
>>>>
>>>>Anyone have an idea?
>>>>
>>>>Colin
>>>>
>>>>
>>>>---------------------------------------------------------------------
>>>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>>For additional commands, e-mail: [EMAIL PROTECTED]
>>>>
>>>>
>>>>---------------------------------------------------------------------
>>>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>>For additional commands, e-mail: [EMAIL PROTECTED]
>>>
>>>---------------------------------------------------------------------
>>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>Sean Dockery
>>[EMAIL PROTECTED]
>>Certified Java Web Component Developer
>>Certified Delphi Programmer
>>SBD Consultants
>>http://www.sbdconsultants.com
>>
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


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


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

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

Reply via email to