You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Noah Lee <nl...@eti.com> on 2000/08/07 16:07:56 UTC

tomcat on 2000?

Has anyone got tomcat to work with apache on Windows 2000? I've set it up 
and assigned the port to be 8080 in the tomcat.conf which I Include with 
the httpd.conf but everytime I try to connect to that port I get a server 
error from my browser.
--------
Noah Lee					512-383-3097
Network/Telecom Administrator		nlee@eti.com
Evolutionary Technologies International, Inc	http://www.eti.com


RE: tomcat on 2000?

Posted by Noah Lee <nl...@eti.com>.
At 02:01 PM 8/7/2000, you wrote:
> > Has anyone got tomcat to work with apache on Windows 2000? I've set it up
> > and assigned the port to be 8080 in the tomcat.conf which I Include with
> > the httpd.conf but everytime I try to connect to that port I get a server
> > error from my browser.
>
>Works like charm for me...

I think I've found the problem, thanks everyone!
--------
Noah Lee					512-383-3097
Network/Telecom Administrator		nlee@eti.com
Evolutionary Technologies International, Inc	http://www.eti.com


RE: tomcat on 2000?

Posted by Kevin Barnes <kb...@genconsult.com>.
open a command prompt, change directory to ..\tomcat\bin and execute
startup.bat

you will probably be getting an error.

Kevin Barnes
MIS Director
Genesis Consulting
of Corporate Media Group
kbarnes@genconsult.com
kbarnes@corpmedia.com
423.244.5246


-----Original Message-----
From: Noah Lee [mailto:nlee@eti.com]
Sent: Monday, August 07, 2000 10:28 AM
To: tomcat-user@jakarta.apache.org
Subject: RE: tomcat on 2000?


At 09:21 AM 8/7/2000, you wrote:
>I have been running tomcat and apache on 2000 for a test server for some
>time now.
>
>I would be helpful to know what your server error was.

I just get a "cannot find server" error from MSIE. When I startup tomcat it
appears to start the java.exe window which then goes away. Isn't that
supposed to stay resident on screen? Or maybe its not starting up correctly?
--------
Noah Lee					512-383-3097
Network/Telecom Administrator		nlee@eti.com
Evolutionary Technologies International, Inc	http://www.eti.com


RE: tomcat on 2000?

Posted by Noah Lee <nl...@eti.com>.
At 09:21 AM 8/7/2000, you wrote:
>I have been running tomcat and apache on 2000 for a test server for some
>time now.
>
>I would be helpful to know what your server error was.

I just get a "cannot find server" error from MSIE. When I startup tomcat it 
appears to start the java.exe window which then goes away. Isn't that 
supposed to stay resident on screen? Or maybe its not starting up correctly?
--------
Noah Lee					512-383-3097
Network/Telecom Administrator		nlee@eti.com
Evolutionary Technologies International, Inc	http://www.eti.com


Tomcat-Apache Configuration...

Posted by Andy Lewis <an...@veritas.com>.
Tomcat 3.1 does not apper to add contexts to the tomcat-apache.conf file unless they
are specifically declared in the server.xml. It will load them for Tomcat, but does
not pass the config through to Apache.

Am I missing something? Is there are way to fix this?

Thanks in advance...


Re: Tomcat JServ Build problem...

Posted by Andy Lewis <an...@veritas.com>.
Ok...by rebuilding apache with the --enable-rule=SHARED_CORE, suddenly the new apxs
is corret and works.

Andy Lewis wrote:

> <sigh> that is what it looked like to me - anybody know what that should be for
> Solaris 2.7?
>
> Tim Kientzle wrote:
>
> > I've had similar problems and traced them to apxs.
> > Apparently, the Apache configuration doesn't always
> > correctly insert the linker information into the apxs
> > script.
> >
> > On my FreeBSD 3.3 system, the relevant lines in apxs are:
> >
> > my $CFG_LD_SHLIB      = q(gcc);          # substituted via Makefile.tmpl
> > my $CFG_LDFLAGS_SHLIB = q( -shared); # substituted via Makefile.tmpl
> >
> > You may need to tweak these for Solaris.  The first
> > line is the linker program to use to generate a shared
> > library, the second line specifies the necessary flags for that
> > program.  Some of the surrounding lines may also need tweaking
> > for your setup.
> >
> >                                 - Tim
> >
> > Andy Lewis wrote:
> > >
> > > I have been unable to locate or build mod_jserv.so for Solaris 2.7. I have
> > > apache 1.3.12 running, built from the full source, and I have Tomcat 3.1
> > > running fine. The connector will not build however. I have been through every
> > > FAQ and instruction page I can find. When I run th ebuild as specified on the
> > > tomcat page instructions, it compiles all of the modules, but then fails to
> > > link. It appears to not even specify either gcc or ld to link the module.
> > >
> > > Any suggestions?


Re: Tomcat JServ Build problem...

Posted by Andy Lewis <an...@veritas.com>.
<sigh> that is what it looked like to me - anybody know what that should be for
Solaris 2.7?

Tim Kientzle wrote:

> I've had similar problems and traced them to apxs.
> Apparently, the Apache configuration doesn't always
> correctly insert the linker information into the apxs
> script.
>
> On my FreeBSD 3.3 system, the relevant lines in apxs are:
>
> my $CFG_LD_SHLIB      = q(gcc);          # substituted via Makefile.tmpl
> my $CFG_LDFLAGS_SHLIB = q( -shared); # substituted via Makefile.tmpl
>
> You may need to tweak these for Solaris.  The first
> line is the linker program to use to generate a shared
> library, the second line specifies the necessary flags for that
> program.  Some of the surrounding lines may also need tweaking
> for your setup.
>
>                                 - Tim
>
> Andy Lewis wrote:
> >
> > I have been unable to locate or build mod_jserv.so for Solaris 2.7. I have
> > apache 1.3.12 running, built from the full source, and I have Tomcat 3.1
> > running fine. The connector will not build however. I have been through every
> > FAQ and instruction page I can find. When I run th ebuild as specified on the
> > tomcat page instructions, it compiles all of the modules, but then fails to
> > link. It appears to not even specify either gcc or ld to link the module.
> >
> > Any suggestions?


Re: Tomcat JServ Build problem...

Posted by Tim Kientzle <ki...@acm.org>.
I've had similar problems and traced them to apxs.
Apparently, the Apache configuration doesn't always
correctly insert the linker information into the apxs
script.

On my FreeBSD 3.3 system, the relevant lines in apxs are:

my $CFG_LD_SHLIB      = q(gcc);          # substituted via Makefile.tmpl
my $CFG_LDFLAGS_SHLIB = q( -shared); # substituted via Makefile.tmpl 

You may need to tweak these for Solaris.  The first
line is the linker program to use to generate a shared
library, the second line specifies the necessary flags for that
program.  Some of the surrounding lines may also need tweaking
for your setup.

				- Tim


Andy Lewis wrote:
> 
> I have been unable to locate or build mod_jserv.so for Solaris 2.7. I have
> apache 1.3.12 running, built from the full source, and I have Tomcat 3.1
> running fine. The connector will not build however. I have been through every
> FAQ and instruction page I can find. When I run th ebuild as specified on the
> tomcat page instructions, it compiles all of the modules, but then fails to
> link. It appears to not even specify either gcc or ld to link the module.
> 
> Any suggestions?

Tomcat JServ Build problem...

Posted by Andy Lewis <an...@veritas.com>.
I have been unable to locate or build mod_jserv.so for Solaris 2.7. I have
apache 1.3.12 running, built from the full source, and I have Tomcat 3.1
running fine. The connector will not build however. I have been through every
FAQ and instruction page I can find. When I run th ebuild as specified on the
tomcat page instructions, it compiles all of the modules, but then fails to
link. It appears to not even specify either gcc or ld to link the module.

Any suggestions?


RE: tomcat on 2000?

Posted by Torsten Curdt <tc...@dff.st>.
> Has anyone got tomcat to work with apache on Windows 2000? I've set it up
> and assigned the port to be 8080 in the tomcat.conf which I Include with
> the httpd.conf but everytime I try to connect to that port I get a server
> error from my browser.

Works like charm for me...
--
Torsten


Re: tomcat on 2000(SP1)? i18n bug

Posted by Andrew <as...@ezan.ac.ru>.
Unable to start tomcat:

Starting Tomcat in new window
Exception in thread "main" java.lang.ExceptionInInitializerError:
java.util.Miss
ingResourceException: Can't find bundle for base name
org.apache.tomcat.resource
s.LocalStrings, locale ru_RU
        at
java.util.ResourceBundle.throwMissingResourceException(ResourceBundle
.java:707)
        at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:679)
        at java.util.ResourceBundle.getBundle(ResourceBundle.java:546)
        at
org.apache.tomcat.util.StringManager.<init>(StringManager.java:115)
        at
org.apache.tomcat.util.StringManager.getManager(StringManager.java:26
0)
        at org.apache.tomcat.startup.Tomcat.<clinit>(Tomcat.java:24)

Any idea?Why can't use default bundle?



RE: tomcat on 2000?

Posted by Kevin Barnes <kb...@genconsult.com>.
I have been running tomcat and apache on 2000 for a test server for some
time now.

I would be helpful to know what your server error was.

Kevin Barnes
MIS Director
Genesis Consulting
of Corporate Media Group
kbarnes@genconsult.com
kbarnes@corpmedia.com

-----Original Message-----
From: Noah Lee [mailto:nlee@eti.com]
Sent: Monday, August 07, 2000 10:08 AM
To: tomcat-user@jakarta.apache.org
Subject: tomcat on 2000?


Has anyone got tomcat to work with apache on Windows 2000? I've set it up
and assigned the port to be 8080 in the tomcat.conf which I Include with
the httpd.conf but everytime I try to connect to that port I get a server
error from my browser.
--------
Noah Lee					512-383-3097
Network/Telecom Administrator		nlee@eti.com
Evolutionary Technologies International, Inc	http://www.eti.com