Re: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Scott Reynolds
I've been running Tomcat on both Linux and Windows for a couple years now and
other than the differences in installation and maintenance, haven't noticed any
differences as far as stability is concerned.

Scott

--- Chad Lester [EMAIL PROTECTED] wrote:

 Is Tomcat more stable on Linux or Windows 2003? What are the pros/cons
 of using it on each platform? 
 
  
 
 Thank you in advance for your help and advice,
 
 Chad
 
  
 
  
 
  
 
 


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



Re: Anybody using Godaddy ssl certs?

2005-05-26 Thread Scott Reynolds
I installed an SSL Cert from GoDaddy a few weeks ago and haven't had any
trouble with Tomcat 4.1.

Scott

--- Mark Winslow [EMAIL PROTECTED] wrote:
 I'm having problems getting them to work.  I'm
 wondering if anybody has had either problems or
 successes with them.  The self-generated keys from
 keytool work, but I get a message that the browsers
 don't have common encryption algorithms once I install
 the tomcat alias cert from godaddy.com.
 
 Thanks.
 
 
   
 __ 
 Do you Yahoo!? 
 Yahoo! Small Business - Try our new Resources site
 http://smallbusiness.yahoo.com/resources/
 
 -
 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]



Re: Anybody using Godaddy ssl certs?

2005-05-26 Thread Scott Reynolds
I just set the common name and organization name to the name of my domain. 
When I examine the certificate details, that's all that's in there as far as my
info is concerned.  Everything else says something about Starfield
Technologies, Inc.

Scott

--- Mark Winslow [EMAIL PROTECTED] wrote:
 I'm wondering.  Did you have to match all the fields
 like Organization Name and Organizational unit
 exactly to what Godaddy uses?  I just put the common
 name as my domain name, but noticed after the cert was
 issued some of the other fields didn't match.
 
 Thanks.
 
 --- Scott Reynolds [EMAIL PROTECTED] wrote:
  I installed an SSL Cert from GoDaddy a few weeks ago
  and haven't had any
  trouble with Tomcat 4.1.
  
  Scott
  
  --- Mark Winslow [EMAIL PROTECTED] wrote:
   I'm having problems getting them to work.  I'm
   wondering if anybody has had either problems or
   successes with them.  The self-generated keys from
   keytool work, but I get a message that the
  browsers
   don't have common encryption algorithms once I
  install
   the tomcat alias cert from godaddy.com.
   
   Thanks.
   
   
 
   __ 
   Do you Yahoo!? 
   Yahoo! Small Business - Try our new Resources site
   http://smallbusiness.yahoo.com/resources/
   
  
 
 -
   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]
  
  
 
 
   
 __ 
 Do you Yahoo!? 
 Yahoo! Small Business - Try our new Resources site
 http://smallbusiness.yahoo.com/resources/
 
 -
 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]



Re: How can I run tomcat on port 8080 and have the users think it's on port 80?

2003-06-06 Thread Scott Reynolds
One way to fake it is to have your users access a page on the web server that
just frames the URL to Tomcat, hiding the real address and the fact that it's
running on port 8080.  I do this in a couple situations and it works out quite
well--also provides a single entry point to the web application.

Scott Reynolds


--- Michael Mattox [EMAIL PROTECTED] wrote:
 I'd like to run Tomcat on port 80 but I don't want to run it as root.  Is it
 possible to run it on 8080 yet have the users access it via port 80?  My
 admin has set it up this way but the problem is all relative links in my app
 show up as :8080.  So once the user clicks on a link they see 8080 from then
 on.
 
 Thanks,
 Michael Mattox
 
 
 
 
 --
 This E-mail is confidential.  It may also be legally privileged.  If you are
 not the addressee you may not copy, forward, disclose or use any part of it.
 If you have received this message in error, please delete it and all copies
 from your system and notify the sender immediately by return E-mail.
 Internet communications cannot be guaranteed to be timely, secure, error or
 virus-free.  The sender does not accept liability for any errors or
 omissions.
 
 
 -
 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]



Re: installing Tomcat without being root

2003-06-01 Thread Scott Reynolds
Just download the .tar.gz (or the .zip) package, untar it into your home
directory, and run it from there, giving you complete control.  As long as you
stick with the default port of 8080, you don't need any special privilages to
run it--That's what I do.

Scott Reynolds

--- [EMAIL PROTECTED] wrote:
 Hello,
 i would like to install TomCat 4.1.24 on a Linux server, and i'm not a root
 user.
 Actually, the server administrator installed for me TomCat (from .rpm) as
 root user,
 and then gave me the password for the user tomcat4, but that is not
 usefull at all, since
 i need a complete control of the config files of tomcat, and i cannot
 neither start it.
 Now i would like to uninstall the current TomCat, and reinstalling it in the
 way i have complete control over TomCat.
 
 Which steps must i tell to the admin to follow, for installing correctly
 TomCat for me?
 
 Greetings,
 Alex
 
 
 
 -
 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]



Re: Setting Tomcat to run as a service with recovery settings to restart if the service stops.

2003-05-31 Thread Scott Reynolds
I have this at the bottom of my startup.bat file:

  :run
  echo.%CATALINA_HOME%\bin\running.txt
  call %EXECUTABLE% run %CMD_LINE_ARGS%
  if exist %CATALINA_HOME%\bin\running.txt goto run

And this at the bottom of my shutdown.bat file:

  if exist %CATALINA_HOME%\bin\running.txt del %CATALINA_HOME%\bin\running.txt
  call %EXECUTABLE% stop %CMD_LINE_ARGS%

That way if Tomcat crashes, or stops for any reason other than being stopped by
shutdown.bat, it gets restarted by the startup.bat file.

Scott Reynolds

--- Mark Andrews [EMAIL PROTECTED] wrote:
 Hello,
 I am looking into some problems we are having with our current
 jakarta-tomcat installation running as a service. I need to set the
 recovers settings for the service when it fails / crashes. I would like
 to set this at install time. Is there any way that you know of to do
 this, and or can you point me in the right direction.
  
 Any help with this would be greatly appreciated.
  
 Thanks
 // MjA
  
 


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