|
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...
Started by kaybenleroll on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Tomcat is a Servelt and JSP Server traditional connectors....
So basically Apache is an HTTP Server, serving HTTP.
So in your Java in Tomcat.
Apache Tomcat is used to deploy your Java Servlets and JSPs.
Files, images, etc.
|
|
Recently our Software Analytic provider ( NETTRACKER ) sent us a plugin in order to be able to capture visitors in a better way. This plugin is for Apache 1.x and Apache 2.x. They said and I quote
that since Apache Tomcat is built on Apache HTTP server...
Started by Geo on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Apache HTTP server is developed in C and so solution would be to....
It is impossible to use a plugin for Apache HTTP server with Tomcat.
Apache Tomcat and Apache HTTP are completely different server technologies.
|
|
Hi,
We are getting this error on starting tomcat (both as a service and via command line):
This release of Apache Tomcat was packaged to run on J2SE 5.0 or later. It can be run on earlier JVMs by downloading and installing a compatibility package from...
Started by Chris Kimpton on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I hope somewhere (sorry don't ´know where), that sometimes reinstallation of tomcat is necessary after installing.
On the tab "Java", you'll find the JVM which the service uses .
tomcat puts in the systray).
|
Ask your Facebook Friends
|
I'm trying to set up my java app as the main component of a new site.
I have some static resources I'd like served by Apache, so I setup Apache and Mod_jk, with the following rules,
JkMount /java_app* ajp13 JkUnmount /*static/* ajp13 RewriteEngine On ...
Started by lucas on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
I ended up making the tomcat webapp ROOT....
Address (and other client-information), it will get the Apache's address instead as he is the playing path problem, or an issue with Apache not sending the cookie info forward, or something.
|
|
In production we run tomcat behind apache, in development bare tomcat. How can I know inside the Servlet class if it is running behind apache or not?
Started by flybywire on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It will be the IP of ....
If it's connected via HTTP (mod_proxy), you can check" since that is out of your control plus it may break if somebody else is using Apache as a frontend request.getRemoteAddr().
Apache is talking to Tomcat.
|
|
I have apache 2.2 and tomcat 5.5 running on a Windows XP machine.
Which tomcat/apache connector is the easiest to set up and is well documented?
Started by will on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It is part of the Apache distribution so:8009/portal
You should consult ....
Mod_proxy_ajp would be the easiest to use if you are using Apache 2.2.
Mod_jk , or simply just use mod_proxy even though it's not really a Tomcat connector.
|
|
I am using tomcat standalone. Nowadays I see tomcat starts to use more memory than I expect. Serving static files from tomcat can be cause of this? Or can serving statics from apache cause better memory use.
Thx Enes
Started by enes on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
You have to know that when you serve 100% static files with Apache....
I think that it is more configurable and more robust and a lot faster than Tomcat.
If you need to share static content (HTML, images, CSS, PDFs, etc...) you can use Apache.
|
|
I downloaded Apache Tomcat 6.0.2 And created a new server in Eclipse
New -> Server Select "Tomcat v6.0 Server", Next Tomcat Installation Directory -> Where I unzipped Apache Tomcat 6.0.2 Finish Then I start the server and go to http://localhost:...
Started by hello_world_infinity on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The fact that ....
You have to 'run' or actually deploy something in that Eclipse Tomcat server so you won't get the 404s.
No web applications.
From the top of my head, I thought Eclipse started the tomcat server without anything in it, i.e.
|
|
HI Most of the time I read Tomcat is Web-server.. Sometimes I read Tomcat is web-container.. Sometimes I read Apache is web-server.. I am bit puzzled.. Can anybody explain it properly?
Thanks..
Answer Snippets (Read the full thread at stackoverflow):
Apache HTTP Server server ("a patchy server" originally....
I recall reading about it) be possible for Tomcat to run under Apache, and allow Apache to handle page loads and such than Tomcat, which is intended for dynamic pages.
|
|
I've set up a host with apache to serve static pages and to use Tomcat to serve my web application (See this question ). The static pages are server from
"http://myhost.com"
and the dynamic (tomcat) pages are server from
"http://myhost.com/myapp"
The ...
Started by Roalt on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
However when ....
In other words, if you go to:
http
This link will work .
The ROOT application will generate pages that contain links from Tomcat's root context.
That accessing the above URL will be mapped to the ROOT application in Tomcat.
|