up vote 11 down vote favorite
5
share [g+] share [fb]

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?

link|improve this question

feedback

4 Answers

up vote 14 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.

link|improve this answer
I know that Perl scripts can run in tomcat. Isn't this true? – serengeti12 May 19 '11 at 13:54
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 at 9:09
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 at 15:44
feedback

in addition to the fine answers above, i think it should be said that tomcat has its own http server built into it, and is fully functional at serving static content too. depending on your java virtual machine configuration it actually has outperformed going through traditional connectors in apache such as mod_proxy and mod_jk.

that said a fully optimized tomcat server should server 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.

link|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
feedback

Found a slideshow here that details some of the differences.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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