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

Unable to retrieve login information using AJP

We are using Apache for LDAP Authentication for webservices defined in tomcat. Using AJP Connector for proxypass, proxyserverpass. The problem we are facing is that we are unable to retrieve User Information in tomcat application. Even though we…
Dan
  • 111
  • 3
0
votes
1 answer

generate stderr log file in tomcat under linux

Recently installed Tomcat 7 in windows machine and its running a web application. Under 'C:\Program Files\Apache Software Foundation\Tomcat 7.0\logs', I could find couple of different log files out of which I am interested in the log file…
wenn32
  • 111
  • 6
0
votes
1 answer

Pentaho 6.1 change context from /pentaho to /

I have a working Pentaho 6.1 installation that will be exposed to the internet over Apache (that is 99% done). I'm having problems with changing the context of the default /pentaho app to /. I found some how-tos, but none…
JohnnyP
  • 33
  • 8
0
votes
1 answer

Tomcat 8 manager returns code 413 on deploy

I have a Tomcat 8 instance running behind a Nginx reverse proxy. It serves a regular J2EE app which we update via Maven 3 and the cargo-maven2-plugin. Usually that works fine but eventually, Tomcat Manager (or Nginx, hard to tell really) fails,…
method
  • 3
  • 4
0
votes
1 answer

Cannot acces Tomcat Server from outside LAN network

I'm seeking for some help with a Tomcat Server. I got an OVH server ( Windows 2012 R2 ) with 2 networks interfaces : WAN ( 151.X.X.X LAN ( 172.16.0.0 ) These two URLs work…
0
votes
1 answer

Identity vs CA Certs in mutual TLS server

Dealing with a customer having trouble configuring mutual TLS (client certificates). In my experience, TLS client authentication works by the server having a cert, and telling the client to send a cert signed by that first cert. The client sends one…
Bobby
  • 101
  • 2
0
votes
1 answer

Disable ssl between reverse proxy and proxied server

I have a standard reverse proxy, with nginx and Tomcat 8. I want nginx to handle encryption, but still inform tomcat whether the connection is secure or not. i have location /{ listen 80; proxy_pass http://backend:8080; } location /{ listen…
f.khantsis
  • 331
  • 3
  • 6
  • 13
0
votes
6 answers

How do I remove the port number from Tomcat urls?

I have Groovy on Grails app deployed on Tomcat/Apache (CentOS). Currently, it is accessed via a URL like http://www.domain.com:8080/AppName. I would like to access it via http://www.domain.com. How do I go about this?
Thody
  • 183
  • 3
  • 3
  • 5
0
votes
2 answers

How can I use Tomcat’s built-in web server?

How can I use Tomcat’s built-in web server?
None
0
votes
2 answers

Long Tomcat start up times

We are currently deploying our in house program on two different servers. Both of these servers built within Cisco Openstack. OS Centos 7. The issue is, that with every redeploy of the app, we need to restart tomcat; shutting down tomcat is behaving…
Josafoot
  • 113
  • 6
0
votes
1 answer

Cipher Mismatch error - tomcat7 and godaddy certificate

(I have asked the same question in stackoverflow as well.) I am trying to install an SSL certificate in a tomcat server (linux based server). This is a godaddy certificate. Installation is proper and when I check the website with https, it shows the…
serverstackqns
  • 764
  • 3
  • 16
  • 42
0
votes
1 answer

httpd-2.2.14 with apache-tomcat-6.0.20

Do I need special configuration of these two together to allow my tomcat server to host website(s)?
None
0
votes
2 answers

Creating a local domain name for application server, on a box where port 80 is already in use

I have a box running application server running on port 8500 and a web server on 80. I am trying to create a local domain name for the application server on 8500. I realize you cannot create a DNS record outside of port 80. However, I already…
0
votes
1 answer

Apache RewriteEngine affect Tomcat access

There is the problem, I have configured htaccess to rewrite all access for http to https, its ok. But i need make a exception for Tomcat on 8080 port. My .htaccess: RewriteEngine On # Redirect all HTTP traffic to HTTPS. RewriteCond %{HTTPS}…
0
votes
1 answer

nginx not letting me change the web root

Even though I change the root directive to point to /var/www/html, nginx is attempting to load files out of /var/www as my root directory. I have restarted nginx and received "OK" after changing default.conf. Am I doing something wrong? Worth…