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 and tomcat in the same host

Firstly, excused me for my english. I have a doubt, Can I have a LAMP with a wordpress installation with domain name "domain1.es" and also have in the same host a tomcat running a servlet with a domain name "domain2.es"? Now, I have this…
0
votes
1 answer

Permission denied in apr_global_mutex_lock

I installed apache tomcat connector and configured all the settings successfully, httpd service also started, but while loading webpage , it is throwing 500 internal service error. In error log it is showing below error: Permission denied:…
0
votes
1 answer

Access all ports by domain name

I have a CentOS VPS running Tomcat on port 80 and HTTP on port 81. I didn't know how to configure DNS. I searched and figured out there are websites that give you DNS. So I got DNS address from cloudflare.com and set it up on my domain. Now I can…
0
votes
2 answers

Nginx reverse proxy pass to separate Tomcat server not going through

This is my file in the NginX /sites-enabled directory: upstream tomcat_server { server 192.168.1.100:8080 fail_timeout=0; } server { listen 80 default_server; listen [::]:80 default_server; server_name _____.com www._____.com; …
Mingle Li
  • 103
  • 4
0
votes
1 answer

Change Tomcat Port on CentOS 5.3

I installed Tomcat5 on CentOS 5.3, by default tomcat runs on port 8080 but i already have ISPConfig running on that port. Port 80 is taken up by Apache How do I know which port tomcat is listening on ? and if required change the port.
rzlines
  • 219
  • 6
  • 18
0
votes
1 answer

httpd not starting when Tomcat is running

I observe a problem when using Apache's httpd and Tomcat on CentOS 7. Both are running on the same host, both installed from official repositories. httpd does SAML with mod_auth_mellon and proxies to the backend web app, running in Tomcat. Initial…
Steffen
  • 163
  • 4
0
votes
3 answers

Apache: How can I make my website available only on SSL and not via both HTTP and HTTPS?

I have a tomcat web app in an Ubuntu server. The web app is deployed as ROOT. I have installed apache2 and via a VirtualHost I pointed the IP directly to the tomcat web app. So I can access the site via the IP (and domain) directly like 125.20.20.50…
PeakGen
  • 129
  • 1
  • 8
0
votes
0 answers

Apache: Website don't load when SSL is installed

I have a tomcat web app in an Ubuntu server. The web app is deployed as ROOT. I have installed apache2 and via a VirtualHost I pointed the IP directly to the tomcat web app. So I can access the site via the IP (and domain) directly like 125.20.20.50…
PeakGen
  • 129
  • 1
  • 8
0
votes
2 answers

Tomcat consuming more Memory after Application Data is added .

A Tomcat Server suddenly shows an increment of 2 GB memory consumption after adding more data into the Application or Application Oracle Database. What I mean is that after restart Tomcat is normal but after a few hours it shows approx. 2000MB of…
0
votes
1 answer

Is there another way to change the port tomcat is using, except for conf/server.xml?

Unfortunately, access to server.xml has been restricted. Is there another way to change the port that tomcat is using? Specifically in tomcat 7.0.75 and 8.0.44. Explanation for the restriction was that, we should not change tomcat settings in the…
Em.
  • 11
  • 1
  • 7
0
votes
3 answers

Multiple Tomcat Instances

I have One Staic IP on one Server which is publically accessible over the Internet. I am running an Apache WebServer on that Server. How can I make - 3 Web Applications (On Tomcat) running on 3 different intranet PC's - available over the Internet…
Vinod
  • 131
  • 3
0
votes
1 answer

Issue with SSL for Apache and Tomcat

I have a server where it's running Apache and Tomcat. The front end app (built in angularjs) is running in Apache, there I installed the SSL cert and it is working fine, I can access with HTTPS and the browser trust on the cert. But then this app is…
Faabass
  • 103
  • 5
0
votes
1 answer

What is the equivalent Tomcat setup to this Resin configuration?

The Resin configuration (resin.xml) pasted below achieves the following: Binds the built-in http server to port 8000 Sets the desired maximum memory allocation (-Xmx512m) Configures the webapp /path/web/root accessible from http://domain.com and…
knorv
  • 1,799
  • 6
  • 19
  • 29
0
votes
1 answer

Connecting subdomain to tomcat7 war instance with Nginx

I need to connect a war instance (war-demo.war) with clojure2.msms.com using Nginx webserver on Ubuntu. This is what I've done. 1. Setting nginx/tomcat In /etc/nginx/sites-enabled, I setup so that tomcat.msms.com is connected to tomcat7. Tomcat7 is…
prosseek
  • 101
  • 3
0
votes
1 answer

About Xmx and Xms Tomcat parameter

I'am using Tomcat 8.0.x with CentOS 7.3. I'am using systemd to launch Tomcat, here is the Unit File : # Systemd unit file for tomcat [Unit] Description=Apache Tomcat Web Application Container After=syslog.target…
Djé Djé
  • 13
  • 3
  • 7