RE: Solaris startup.sh error! 'The JAVA_HOME environment variable is not defined properly'

2002-08-15 Thread Brian Bernardo
Set the JAVA_HOME variable in the catalina.sh file. That is where it goes. Brian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 2:13 PM To: [EMAIL PROTECTED] Subject: Solaris startup.sh error! 'The JAVA_HOME environment variable

RE: Compiling mod_webapp on Solaris 7

2002-08-14 Thread Brian Bernardo
Been there, seen that. Go to www.sunfreeware.com and get the packages for gmake. That resolved our issue. Brian -Original Message- From: Raúl Mateos [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 8:35 AM To: Tomcat Users List Subject: Compiling mod_webapp on Solaris 7

RE: MS Power Point and Excel

2002-06-27 Thread Brian Bernardo
Here you go. Web.xml: mime-mapping extensionppt/extension mime-typeapplication/mspowerpoint/mime-type /mime-mapping mime-mapping extensionxls/extension mime-typeapplication/excel/mime-type /mime-mapping Brian -Original Message- From: [EMAIL PROTECTED] To:

RE: -Xmx/-Xms Parameters, Where do they go???

2002-06-25 Thread Brian Bernardo
Add the following to your startup.sh script. Obviously, these are my setting and you will have to adjust accordingly: CATALINA_OPTS= -server -Xms3g -Xmx3g -Xoss1568k -XX:NewSize=768m -XX:MaxNewSize=768m ; export CATALINA_OPTS Adding these arguments gave dramatic improvements, although, I wish

RE: dns lookup

2002-05-15 Thread Brian Bernardo
Although, not necessarily a Tomcat question... If you are referring to that server also being a DNS server, you need to allow UDP 53 for DNS queries, TCP 53 for transfers, zone updates etc. If it not a DNS server and cannot make DNS queries (hostname lookups or whatever) then you need to allow

RE: Should i use J2re instead of jdk in my Tomcat server ?

2002-05-06 Thread Brian Bernardo
Yes, you need the jdk installed. JAVA_HOME should point to the jdk installation directory. B -Original Message- From: Jose Euclides da Silva Junior - DIGR.O [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 1:11 PM To: [EMAIL PROTECTED] Subject: Should i use J2re instead of jdk in

RE: Servlet init() callin twice on startup. PLease help.

2002-04-29 Thread Brian Bernardo
How about you give a little background info? If you are using webappdeploy in apache, the comment out the below line in your server.xml file: Context path= docBase=../../../../webapp crossContext=true debug=0 reloadable=false

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Brian Bernardo
ServerName blah1.blah.com ServerAlias blah2.blah.com DocumentRoot /blah WebAppConnection conn warp localhost:8008 WebAppDeploy webappconn /test /VirtualHost Ken Brian Bernardo wrote: While that technically works, it launches a separate tomcat instance within

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Brian Bernardo
192.168.1.10 DocumentRoot /home/user/public_html ServerName www.domain.com ServerAlias test.domain.com WebAppConnection conn warp localhost:8008 WebAppDeploy mywebapp conn /go /VirtualHost - Ken Anderson Brian Bernardo wrote: Can you send me your httpd.conf file

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-26 Thread Brian Bernardo
(Was canonical names) What do you mean by 'targetHost' entry? Ken Brian Bernardo wrote: I am using Apache 1.3.24 on Solaris 8, and was using tomcat 4.03 with the 4.03 connector. I upgraded to tomcat 4.04b2 and compiled the connector too, but still have the same problem. The targetHost entry always

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Brian Bernardo
First of all, I am very proficient with DNS; that was not the question. I want users who go to http://name.domain/webapps to have the same webappdeployment as http://name2.domain/webapps. It is important that however they got there (domain prefix) be maintained throughout their session. This

RE: tomcat/apache with ALIASES (Was canonical names)

2002-04-25 Thread Brian Bernardo
.blah.com DocumentRoot /blah WebAppConnection conn2 warp localhost:8008 WebAppDeploy webappconn2 /test /VirtualHost Ken Brian Bernardo wrote: First of all, I am very proficient with DNS; that was not the question. I want users who go to http://name.domain/webapps to have the same

tomcat/apache with canonical names

2002-04-24 Thread Brian Bernardo
I am trying to use canonical names under apache 1.3.20 to work with tomcat 4.01. Right now when I go to http://cname1.domain/webapps http://cname1.domain/webapps I get forwarded to http://servername/webapps http://servername/webapps where servername is the ServerName set within the apache

Webappdeploy line help

2002-04-15 Thread Brian Bernardo
Help. Is there a way to use tomcat to serve up from multiple urls within one instance? After starting apache I get an instance for every WebAppDeploy line and I am not sure if this is bad or how much it effects performance/scalability. I have the following lines in my httpd.conf: IfModule

RE: Webappdeploy line help

2002-04-15 Thread Brian Bernardo
threads, not processes. Joseph Molnar http://www.codesta.com/ - Original Message - From: Brian Bernardo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 15, 2002 12:15 PM Subject: Webappdeploy line help Help. Is there a way to use