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
1 answer

Apache Tomcat requires an abnormal amount of time to start in CentOS 7

I am experiencing a weird issue on a CentOS 7 virtual machine and I can't see what is causing it. I created the VM on Digital Ocean and set it up as follows: 1) modified /etc/hostname with myhostname 2) modified /etc/hosts as such 127.0.0.1…
Giordano
  • 309
  • 1
  • 3
  • 9
0
votes
1 answer

What is the latest patched version of Tomcat7?

I am running on tomcat version 7.0.52 , i know this is a old version. I looked into https://tomcat.apache.org/security-7.html, according to this page , the latest version is 7.0.68 , so i am in confusion, coz i am not sure if i am secure or not,…
Nishant Singh
  • 145
  • 1
  • 9
0
votes
0 answers

AJP Connection Failure

The other night a Apache load balanced cluster of Tomcat instances because to fail when attempting to communicate over AJP. I can not figure out why this occurred nor can I get apache to comminucate when I can find no obvious issues. EDIT The only…
John Giotta
  • 127
  • 2
  • 10
0
votes
1 answer

Why HTTP 501 error of type JSON presented to UI as text/html instead of application/json?

I have front-end Angular running on Apache with back-end Spring REST API on Tomcat. I wanted to throw 501 error in some error case and want that response to be presented as JSON to UI (Content-Type as "application/json"). This works fine in my…
Anil Konduru
  • 101
  • 3
0
votes
0 answers

Tomcat instance inadvertently down in amazon ec2

I am running a tomcat instance in my ec2-instance, and it is frequently down for some reason. I checked the logs at {tomcatinstance}/logs/ , like catalina.out, localhost*.log, myapplication.log; but there are no traces of why it is going down. I…
kuhajeyan
  • 101
  • 3
0
votes
1 answer

Apache timeout - large file downloads

A website I manage has to occasionally serve up large files over the internet, and this usually results in a failed HTTP 500 Internal Server error. However, I can reproduce this issue locally by going to localhost From what I can tell looking at…
0
votes
1 answer

Application GUI on a heavy load tomcat doesn't respond

We have a backend webapp installed on tomcat 8 that has a GUI part written in Apache wicket MVC (version 1.4) - the wicket GUI fails to respond the moment the server starts doing heavy processing. On average the CPU sits around 85% utilization. The…
0
votes
1 answer

How to actually disable SSL3 on a ubuntu 14.04 LTS

I am running a server which has tomcat7 and apache2 on it. I issue the following command via another remote host: openssl s_client -connect my_site:443 -ssl3 This returns: CONNECTED(00000003) 139773982140064:error:1408F10B:SSL…
Nishant Singh
  • 145
  • 1
  • 9
0
votes
0 answers

Can't increase Java heap in Debian

I'm setting up an environment to run some web apps developed in Grails, and deployed in Tomcat. I made the default configuration and the first web app deployed just fine, but after logging in, the page no longer loads. When I check the logs, I'm…
pamobo0609
  • 109
  • 2
0
votes
2 answers

Remote parallel deployment in Tomcat

We're deploying an app to several Jelastic Tomcat environments using Maven on a TeamCity build server. This works well and has done so for quite some time. Now, we want to move closer to zero-downtime deploy and would like to find a simple way to…
method
  • 3
  • 4
0
votes
1 answer

tomcat 8 silent install on windows as service

I'd like to create installer for my application. I need to install tomcat 8 as service on windows host. Is there any possibility to install it in silent mode and provide parameters to configure ports, heapsize, ...? Thanks
bilak
  • 173
  • 1
  • 3
  • 8
0
votes
1 answer

How to create a *.crt file out of keystore? (SSL / Tomcat)

to use https (ssl) with tomcat i build a keystore with this commands: $JAVA_HOME/bin/keytool -genkey -alias [youralias] -keyalg RSA -keystore [/preferred/keystore/path] $JAVA_HOME/bin/keytool -certreq -keyalg RSA -alias [youralias] -file…
yef pie
  • 3
  • 2
0
votes
1 answer

importing self signed certificates mysql/mariadb and tomcat how to?

trying to use certs for securing connections between Tomcat 8.x and mysql/mariadb. I'm going to use a self-signed cert. What follows is what i think i should be going and appreciate you to jump in and correct me. Create Backend(DB) certs sudo…
user2967267
  • 113
  • 1
  • 6
0
votes
0 answers

Why my websockets application deployed on tomcat is not getting the shibboleth headers?

My stack looks like this: Apache httpd server 2.4.12: with mod_shibd, mod_proxy_http & mod_proxy_wstunnel Shibboleth 2.5 Apache Tomcat 7.0.54 Our scenario looks like this: --------- -------------- --------------- |Browser|…
Gaucho
  • 101
  • 2
0
votes
1 answer

Linux: Mismatch between the threads the tomcat application created and the run queue length

Linux: 16gb ram, 2cpus On Linux machine running tomcat with around 800 threads which I got using jvisualVM, but in run queue length I am getting only 50 because CPU is 100%, and no blocked threads are showing. I got these value through NMON. so…