Questions tagged [tomcat]

Apache Tomcat is an open source software implementation of the Java Servlet and JavaServer Pages technologies released under the Apache License version 2. The Tomcat project started at Sun Microsystems and was donated by Sun to the Apache Software Foundation in 1999.

Apache Tomcat is an open source software implementation of the Java Servlet and JavaServer Pages technologies. The Java Servlet and JavaServer Pages specifications are developed under the Java Community Process. Apache Tomcat is developed in an open and participatory environment and released under the Apache License version 2.

The Tomcat projects started at Sun Microsystems as the reference implementation of the Java Servlet and Java Server Pages Specifications. The Java Community Process (JCP) site contains all the details of those specifications.

The Tomcat code base was donated by Sun to the Apache Software Foundation in 1999, and the first Apache release was version 3.0. Since then, multiple volunteers from Sun and numerous other organizations have contributed to the product. There have been multiple major releases and the product has enjoyed considerable industry adoption as well as a healthy and active community. Each major release is aligned to a version of the Servlet Specification.

In 2005, Tomcat became its own top-level Apache project, leaving the Jakarta umbrella and oversight structure to manage itself.

2232 questions
0
votes
0 answers

nginx proxy_pass to tomcat webapp

I want to configure nginx as a reverse proxy for different webapps hosted on a tomcat. Basically, all requests to http://localhost:80/A/some/other/params (nginx is running on port 80) should be forwarded to…
mox601
  • 133
  • 2
  • 8
0
votes
2 answers

linux-tomcat - add command to startup.sh

How can I add a command at the end of the tomcat startup.sh script to execute a file. I think it is something like this. Assuming my file needs start as command passed to it below: exec "/path/to/file/file" start
wondergoat77
  • 101
  • 3
0
votes
1 answer

Apache returns 503 error accesing address with mod_jk configured

I have a Tomcat server listening at 10881 AJP port. I confirmed it by netstat: tcp 0 0 0.0.0.0:10881 0.0.0.0:* LISTEN 2297/java This is the configuration of Tomcat server.xml file:
Carlos Durán
  • 11
  • 3
  • 8
0
votes
1 answer

Why aren't connections released by the tomcat AJP connector

I have here a jboss with a web application. The tomcat is configured to use the ajp connector. Incoming connections are tunneled via an apache reverse proxy to the connector. Now I recognized that under heavy load the connector keeps a bunch of…
Chris
  • 143
  • 1
  • 1
  • 8
0
votes
0 answers

tomcat https static content

We are using tomcat to serve everything over http. BUT, we have a login page which is served over https since we have them enter a password. Recently, chrome has stopped supporting serving non secure content on secure pages. How do we configure…
dwj300
  • 1
0
votes
1 answer

Is it possible to only restart part of tomcat servlet engine?

I've configured tomcat server to have multiple server instances, each on a separate port. Here is part on server.xml: ... ... Is it possible to…
Ehsan Khodarahmi
  • 305
  • 1
  • 7
  • 18
0
votes
1 answer

Port 80 to port 8080 Redirection: Apache with Proxypass Too Slow Whereas Accessing xyz.com:8080 directly is very fast

We are facing a Strange Problem....We have a busy server...and the response time is going about 1 Minute Per Request(very slow).....which is running in front of Tomcat.....if we are accessing site with xyz.com:8080 Its super fast(1 Req/Sec).....and…
gopal gupta
  • 1
  • 1
  • 1
0
votes
1 answer

Tomcat8 setup port to 80

I followed this http://www.mogilowski.net/lang/en-us/2014/04/22/install-apache-tomcat-8-on-debian-7-wheezy-with-virtual-hosts-and-apache2-integration/ to install tomcat on an VPS, version 8.0.20... I am trying t change the port to 80 but there is…
Alpha2k
  • 121
  • 1
  • 5
0
votes
1 answer

Tomcat 7 is being unresponsive when I turn on SSL (no SSL handshake)

My question is: why won't tomcat respond when I turn on SSL? I've attempted to migrate a working tomcat7 web application from an Ubuntu 12.10 x64 Server to a fresh Ubuntu 14.04 x64 server. Every attempt has been made to keep the configuration the…
codemonkey
  • 111
  • 5
0
votes
0 answers

Our tomcat just crashed due to classnotfound, not sure how to investigate

Our server has been in production for years without issues, but today it crashed out of the blue. Last in the logs: Exception in thread "main" java.lang.NoClassDefFoundError: aasxknsakadskdskdskdsakmxxads Caused by:…
Mathias
  • 121
  • 3
0
votes
2 answers

EC2 instance running apache tomcat not accessible from outside

I have a 64-bit amazon linux instance in aws. I am running apache tomcat6 running on that machine. sudo fuser -v -n tcp 8080 USER PID ACCESS COMMAND 8080/tcp: tomcat 2492 F.... java If I do curl…
liv2hak
  • 303
  • 4
  • 13
  • 25
0
votes
1 answer

Tomcat 8.15 APR Poller failed with error 610,038

I was testing my server with JMeter but when I reach an Highload the server tends to have this error logged on the console and it keeps a lot of active threads on apparent deadlock : 30-Jan-2015 17:24:38.504 SEVERE [http-apr-80-Poller]…
0
votes
0 answers

How to reduce Tomcat response time (OR increase throughput)?

I have Tomcat 8 and MySQL 5.6 running in 2 Azure virtual machines (8 cores and 28 GB RAM). My web application provides a REST API to insert several data fields into DB. The application uses a common dbcp connection pool to talk to the DB. I use…
Rocherlee
  • 101
  • 1
  • 3
0
votes
2 answers

Apache mod_rewrite : RewriteRule to pass requests tomcat application

I am having difficulty defining a correct RewriteRule to forward requests to an application running in tomcat. I have apache with mod_rewrite enabled as well as tomcat setup with an application mounted with mod_jk. Without a virtual host, I can…
Mike Croteau
  • 101
  • 4
0
votes
1 answer

Tomcat on Windows, starting/stopping service

The Tomcat Windows Service How-To guide lists some commands to run/stop/etc the service from the command line. For example: Tomcat7 //ss// (with whatever parameters) Is there any practical difference to just using Windows NET START and NET STOP or…
zako42
  • 173
  • 6
1 2 3
99
100