Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / September 2006

Tip: Looking for answers? Try searching our database.

Difference between Apache Web Server and Tomcat Server

Thread view: 
BIG BOY - 06 Sep 2006 15:00 GMT
Sir I am little bit confused about Apache Web Server and Apache Tomcat
Server. Please give me an link so that i can find it out.
Davide Consonni - 06 Sep 2006 15:12 GMT
> Sir I am little bit confused about Apache Web Server and Apache Tomcat
> Server. Please give me an link so that i can find it out.

apache web server is a webserver.
tomcat is a servlet container.

Signature

Davide Consonni <davideconsonni@virgilio.it> http://csvtosql.sourceforge.net
"L'uomo e' un animale che gioca, e il computer e' un altro mezzo per
giocare." -- Scott Adams

Matt Rose - 06 Sep 2006 16:17 GMT
> > Sir I am little bit confused about Apache Web Server and Apache Tomcat
> > Server. Please give me an link so that i can find it out.
>
> apache web server is a webserver.
> tomcat is a servlet container.

Apache is what your browser connects to, tomcat is what apache connects
to to ask for servlets to be processed. However, tomcat now includes a
webserver so you can cut out the middle man. You might not want to do
this on a large production environment.

Matt
fabrulous@yahoo.fr - 06 Sep 2006 16:21 GMT
> > Sir I am little bit confused about Apache Web Server and Apache Tomcat
> > Server. Please give me an link so that i can find it out.
>
> apache web server is a webserver.
> tomcat is a servlet container.

nitpicking a bit...  You make it sound like Tomcat cannot act as a web
server.

Tomcat can run either in stand-alone mode or "connected" to Apache.

In stand-alone mode, Tomcat can process servlets (and JSPs) and can
serve static content as well... And it does it *very* fast.

Tomcat is actually, for many uses, a very good web server.

Note that there are case where it is more appropriate to
use Apache + Tomcat just as there are case where it is
more appropriate to use Tomcat in stand-alone mode.
Davide Consonni - 06 Sep 2006 16:30 GMT
> In stand-alone mode, Tomcat can process servlets (and JSPs) and can
> serve static content as well... And it does it *very* fast.

ok, but apache httpd is faster than tomcat and has a better virtual host
management.
usually  people but tomcat behind apache with a connector ..

Signature

Davide Consonni <davideconsonni@virgilio.it> http://csvtosql.sourceforge.net
Un padre e' un banchiere fornito dalla natura.

Tom Cole - 06 Sep 2006 17:04 GMT
> > In stand-alone mode, Tomcat can process servlets (and JSPs) and can
> > serve static content as well... And it does it *very* fast.

Second that.

> ok, but apache httpd is faster than tomcat and has a better virtual host
> management.
> usually  people but tomcat behind apache with a connector ..

Bet you can't find supporting data for that (usually people put tomcat
behind apache with a connector). My bet would be that most small to
mid-sized sites don't. I have situations with both (actually I have a
third scenario with IIS in front of Tomcat as well) and see no
significant difference in response times. Then again I'm only talking
about dealing out thousands of pages a day. I'm sure that in a
high-volume app that would be different.

I prefer the all Tomcat solution myself where it fits (which would be
most cases).

But to respond to the OP:

Apache is webserver only. Use it for HTML, SHTML, images, etc. With the
exception of SSI, this is static stuff. For dynamic stuff (like PHP,
Perl, Servlets, etc.) it needs help from other programs.

Tomcat is a servlet container. Use it for JSP, Servlets (and if you
want, all the stuff Apache does).

JBoss is an application server. Use it if your application uses
Enterprise JavaBeans.
Arne Vajhøj - 06 Sep 2006 17:57 GMT
>> ok, but apache httpd is faster than tomcat and has a better virtual host
>> management.
[quoted text clipped - 7 lines]
> about dealing out thousands of pages a day. I'm sure that in a
> high-volume app that would be different.

I would expect huge files to be sligthly faster in
Apache or IIS than by Tomcat.

Else the only reason for a speedup would be the
use of HTTPS where Apache or IIS are using a hardware
SSL accelerator.

Arne
Robert Klemme - 07 Sep 2006 09:01 GMT
> I would expect huge files to be sligthly faster in
> Apache or IIS than by Tomcat.

Why do you expect that?  I'd rather expect the opposite because the time
for streaming a large file from disk to network is mostly determined by
IO and network bandwidth whereas for smaller files the overhead of HTTP
header processing etc. would make up a greater portion of overall
timing.  Are there any optimizations in apache (caching the whole file?)
that will make it faster on large files?

Kind regards

    robert
Arne Vajhøj - 09 Sep 2006 05:56 GMT
>> I would expect huge files to be sligthly faster in
>> Apache or IIS than by Tomcat.
[quoted text clipped - 5 lines]
> timing.  Are there any optimizations in apache (caching the whole file?)
> that will make it faster on large files?

My basis is practical. If Apache performs poorly for big
files, then users complain and it get fixed. If Tomcat performs
poorly for big files, then no users complain, because no users
uses Tomcat for that, so it never get fixed.

I did a simple test. One full size CD image. 10 downloads
singlethreaded.

Apache 2.0 - 155 seconds
Tomcat 5.5 - 185 seconds

Practically default config on both.

It does not prove anything, because there are a bazillion
possible test scenarios and test configs and not really
a way to say what is most correct.

But it did at least not prove my hypothesis wrong.

Arne
David Segall - 06 Sep 2006 18:22 GMT
>Tomcat is a ... and if you want, all the stuff Apache does.
Is that really true? Can I use Tomcat as a front end for PHP, Perl
etc? Does it have similar facilities for limiting access?
Mark Space - 06 Sep 2006 22:10 GMT
>> Tomcat is a ... and if you want, all the stuff Apache does.
> Is that really true? Can I use Tomcat as a front end for PHP, Perl
> etc? Does it have similar facilities for limiting access?

I'm not an Apache expert, and I doubt Tomcat will really do *all* that
Apache does.  But Tomcat definitely has facilities for limiting user
access based on user roles, and for hiding scripts and other back-end
components from all users.
Mark Space - 06 Sep 2006 17:55 GMT
> Sir I am little bit confused about Apache Web Server and Apache Tomcat
> Server. Please give me an link so that i can find it out.

I'm just gonna repeat what others have said.

Apache = web server.  I'm sure you know what that is.

Tomcat is like Perl.  Perl runs Perl scripts through CGI for Apache.
Tomcat runs Java (servlets and JSP, but it's all Java) through CGI for
Apache.  Actually, Tomcat has a more sophisticated connection to Apache
than CGI, but that's really just a detail of the implementation for this
discussion.  Fix in your mind that Tomcat = Java CGI, and you've got the
basics.

As others have mentioned, Tomcat also can be a stand-alone HTTP server,
but it's not as robust or sophisticated as Apache.  I'd only use Tomcat
alone for testing, or for small internal web sites.  For real production
work, put Apache in front of Tomcat (just like you'd normally use Apache
to run in front of Perl or other CGI scripting) and you're ready for the
big leagues.
Arne Vajhøj - 06 Sep 2006 18:01 GMT
> Sir I am little bit confused about Apache Web Server and Apache Tomcat
> Server. Please give me an link so that i can find it out.

As others already have said then:

Apache HTTPD = HTTP server
Apache Tomcat = servlet container

and you can run:

--(HTTP)--HTTPD
--(HTTP)--Tomcat
--(HTTP)--HTTPD--(AJP)--TOMCAT

at your choice.

You can lookup docs at the Apache web site.

The reasons for putting Apache in front of Tomcat
are typical:
  - loadbalancing
  - need for non Java stuff like PHP
  - need for SSL hardware acceleration

Arne


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.