Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the difference in terms of functionality between the Apache HTTP Server and Apache Tomcat?

I know that Tomcat is written in Java and the HTTP Server is in C, but other than that I do not really know how they are distinguished. Do they have different functionality?

share|improve this question

closed as not constructive by casperOne Dec 29 '12 at 18:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 53 down vote accepted

Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat.

So basically Apache is an HTTP Server, serving HTTP. Tomcat is a Servlet and JSP Server serving Java technologies.

share|improve this answer
I know that Perl scripts can run in tomcat. Isn't this true? – serengeti12 May 19 '11 at 13:54
2  
What do you intend by "Apache is [...] serving HTTP"? Isn't Tomcat also serving (hypertext aka) HTTP? Why can't Tomcat simply be a "mod_java" Apache module? Can you explain? – Peterino Jan 19 '12 at 9:09
9  
Tomcat is a servlet container. A servlet, at the end, is a Java class. JSP files (which are similar to PHP oder ASP files) are generated into Java code (HttpServlet), which is then compiled to .class files by the server and executed by the Java virtual machine. - Apart from that, this forum here explains the difference between Apache HTTPD and Tomcat pretty well: coderanch.com/t/85182/Tomcat/… – Peterino Jan 19 '12 at 15:44
3  
@Peterino "Why can't Tomcat simply be a "mod_java" Apache module?". There is a "mod_jk" Apache module used to interface Apache with Tomcat. The question is "why shouldn't Tomcat bring a full, simple and plain old HTTP server instead of forcing an admin to configure two environments, one of which must be recompiled for the specific target platform?" – djechelon Mar 28 '12 at 15:30

Found a slideshow (dated 2001) that details some of the differences.

share|improve this answer

In addition to the fine answers above, I think it should be said that Tomcat has it's own HTTP server built into it, and is fully functional at serving static content too. Depending on your java virtual machine configuration it can actually outperform going through traditional connectors in apache such as mod_proxy and mod_jk.

That said a fully optimized Tomcat server should serve static files fast and if you have Java servlets, JSPs and ColdFusion files in addition to static content you may find tomcat does an excellent job by itself.

share|improve this answer
Hi , I have a very basic doubt, Is it possible to perform load balancing between 2 hosts running apache http server using mod_jk ?? I am finding it hard to understand this. – sethu Aug 18 '11 at 18:19

Tomcat is primarily an application server, which serves requests to custom-built Java servlets or JSP files on your server. It is usually used in conjunction with the Apache HTTP server (at least in my experience). Use it to manually process incoming requests.

The HTTP server, by itself, is best for serving up static content... html files, images, etc.

share|improve this answer
I doubt Tomcat is primarily an application server statement. – Rachel Mar 28 '12 at 16:05
  1. Apache is a general-purpose http server, which supports a number of advanced options that Tomcat doesn't.
  2. Although Tomcat can be used as a general purpose http server, you can also set up Apache and Tomcat to work together with Apache serving static content and forwarding the requests for dynamic content to Tomcat.
share|improve this answer

If you are using java technology(Servlet/JSP) for making web application you will probably use Apache Tomcat. However, if you are using other technologies like Perl, PHP or ruby, its better(easier) to use Apache HTTP Server.

share|improve this answer

Apache is an HTTP web server it serve as HTTP but apache tomcat is an java servlet container,IT FEATURES Same as web server customized to execute java servlet and JSP pages.

share|improve this answer
This answer is a bit confusing – mac Oct 27 '12 at 17:29

Well, Apache is HTTP webserver, where as Tomcat is also webserver for Servlets and JSP. Moreover Apache is preferred over Apache Tomcat in real time

share|improve this answer
2  
This question is quite old, and your answer seems to duplicate ones that have been posted long ago. Answers are appreciated but new answers should help add to the conversation. – GargantuChet Sep 24 '12 at 20:10

an apache server is an http server wich can serve any simple http requests, where tomcat server is actually a servlet container which can serve java servelt requests.

Web server [apache] process web client (web browsers) requests and forwards it to servlet container [tomcat] and container process the requests and sends response which gets forwarded by web server to the web client [browser].

Also you can check this link for more clarification:-

https://sites.google.com/site/sureshdevang/servlet-architecture

share|improve this answer

protected by Sam Jan 4 at 20:51

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.