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

Run nginx as proxy for mongodb and proxy for a webservice running in tomcat

I want to run nginx to redirect requests to mongodb and a webservice both. I tried to use both server and stream directive but I was not able to get it right. What should be the configuration file which I can use so that when I contact nginx server…
nikvys
  • 1
0
votes
0 answers

Apacher Tomcat debug conf files

I am using Tomcat 8 on AWS an Elastic Load Balancer. I am trying to do a rewrite, but nothing is happening, see here for details. I have: /etc/httpd/conf/httpd.conf ... Include conf.d/*.conf Include conf.d/elasticbeanstalk/*.conf ... The httpd.conf…
0
votes
1 answer

Apache Rewrite rule not working

I am using an AWS Elastic Load Balancer, and have set up the following rule to convert http traffic to https. /etc/httpd/conf.d/httpd_redirect.conf RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https …
Richard
  • 145
  • 1
  • 10
0
votes
3 answers

Redirect Tomcat outgoing traffic

How can I redirect all outgoing traffic from a Tomcat server by Url patterns? Example: redirect all requests from tomcat to http://my.backend.url:8080/my-service redirect to http://a.backend.url:8080/my-service-a and…
sotix
  • 101
  • 6
0
votes
3 answers

Remake catalina.out without restart of server

Is it possible to remake a deleted catalina.out on a tomcat server without restarting the server? The catalina.out got accidentally deleted but it's needed due to a funky cluster configuration (4 server, and they seem to draw data from each other…
Em.
  • 11
  • 1
  • 7
0
votes
1 answer

Nginx handling Domain Name Forwarding to tomcat

I have domain name xyzabc.com and I am hosting few sample apps at my local machine Since My ISP blocks port 80, So I have to forward my domain name to Port 81; So I Defined the Forwarding (http://xx.xx.xx.xx:81) in godaddy and I configured 2…
Tiwari
  • 101
  • 1
0
votes
1 answer

Tomcat editing a users authorized_keys file

I have a java application running on tomcat8. This application has a method for users to upload a public ssh key, which is then added to a local users authorized_keys (limited to scp on a single folder), so that they can use scp to the server using…
bwright
  • 123
  • 8
0
votes
1 answer

Can you use a specific cipher `(EDCHE-RSA-AES256-GCM-SHA384)` certificate with `TLS1`?

I've got a certificate with following cipher EDCHE-RSA-AES256-GCM-SHA384 on a tomcat 6 (can only use TLS1, I know it's old). I've read somewhere that this cipher is for TLS1.2. Does that mean that you need TLS1.2 or that is also works with TLS1.2.…
Em.
  • 11
  • 1
  • 7
0
votes
1 answer

Tomcat configuration for single IP address with multiple domains and SSL Certificates

I am trying to configure Tomcat to serve the same content to two different domains with different SSL certificates but the same IP address. I have created two connectors however even though the domain is different I am getting the following error…
binarylegit
  • 127
  • 1
  • 4
0
votes
1 answer

Nginx proxy_pass issue - getting 404

I am a bit confused and quite don't understand why I am getting 404 Not found for the request http:/customer.local/sign-out The strange thing is this is happening only in Firefox browser with CURL or Chrome it works fine. Here my nginx config. The…
Peter Jurkovič
  • 155
  • 1
  • 1
  • 8
0
votes
1 answer

Tomcat indicates "FAIL" even though it seems to be working

I installed Tomcat8 on Debian Jessie using apt-get in a Docker file. I then sudo service tomcat8 start. This results in this error: [FAIL] Starting Tomcat servlet engine: tomcat8 failed! However, it actually seems to be working, because I can…
0
votes
1 answer

chkconfig wont install tomcat8

I have tomcat8 intalled on my Amazon Linux AMI, I modified the tomcat8 init script header, so chkconfig could install tomcat8 to run automatically on boot. The modified header is: #!/bin/bash # # tomcat This shell script takes care of starting…
mFeinstein
  • 513
  • 2
  • 5
  • 10
0
votes
1 answer

PM2 Similar for Tomcat

Tomcat due to auto-of-memory or rare problem it stops, and needs to manually start the service back. Is there any simple Process manager like PM2 for Tomcat, to monitor and start when not running.
arvindwill
  • 111
  • 3
0
votes
2 answers

How to know if Apache HTTP is taking control over Apache Tomcat

I have a web application running over Tomcat flawlessly, but prior to redirections and other security improvements I have to run httpd connected to tomcat. httpd is running, but I actually don't know if it's running over Tomcat. I mean, the first…
Rajo
  • 1
0
votes
1 answer

When access CloudStack UI got HTTP Status 404 error

I have installed CloudStack Management Server followed this guide: http://docs.cloudstack.apache.org/projects/cloudstack-installation/en/4.9/management-server/index.html Versions CloudStack: 4.9 CentOS: 6.8 Finally I start server: #…
cloud_cloud
  • 165
  • 2
  • 4
  • 15