Questions tagged [tomcat9]
58 questions
1
vote
1 answer
Yum dependencies and metadata for java-headless
I'm trying to install Java 8 and Tomcat 9 on a RockyLinux 9 server.
Installing tomcat (from EPEL) requires java-headless >= 1:1.8.0 which is resolved to java-11-openjdk-headless. So Java 11 gets installed as a dependency... even though I have…

nathou
- 163
- 6
1
vote
1 answer
tomcat9 shibboleth+mod_jk authentication forbidden
I have a Spring Boot application running currently under Tomcat 8.5 that has a shibboleth-based SSO integrated. Shibboleth and tomcat are connected using apache2 mod_shib and mod_jk, using default Debian 9 packages.
I am now trying to upgrade the…

P.Péter
- 569
- 2
- 6
- 24
1
vote
1 answer
Why is Apache not proxying to Tomcat?
Apache 2.4 and Tomcat 9 are installed on the same Ubuntu 20.04 server. I'm trying to set up Apache as a reverse proxy to Tomcat. This configuration is already working perfectly on an Apache 2.4/Tomcat 7/Ubuntu 16.04 system, but I'm having trouble…

Borea Deitz
- 202
- 1
- 10
1
vote
0 answers
Tomcat sends response 400 out of nowhere
I'm running a server on Ubuntu 18.04 with Tomcat and I saw the following in the access log.
- - [13/Sep/2020:19:33:40 +0000] "POST /path/path HTTP/1.1" 200 53
- - [13/Sep/2020:19:33:41 +0000] "POST /path/path HTTP/1.1" 200…

Amos
- 141
- 7
1
vote
1 answer
Tomcat 9 Service on Centos 7 won't start up at system boot
I'm not very experienced with Linux generally, so please forgive me if this is obvious to you.
I have done a large number of searches on various combinations of keywords, but can't find a solution to this problem.
I have installed command line only…

Spencer
- 11
- 1
- 2
1
vote
1 answer
Tomcat 9.0.35 with JDK 11 behind a IIS 8.5 ISAPI redirector
I am trying to install Tomcat 9.0.35 using JDK 11 on Windows 2012 R2 VM. This will an upgrade from Tomcat 9.0.11 and JDK 10. I am having issues with ISAPI Redirect. I see the following errors in ISAPI logs:
[2912:2028] [info]…

ops_guy
- 11
- 4
1
vote
1 answer
Apache Tomcat/9.0.34 Login on Manager App and Host Manager not working
installed Tomcat on a Ubuntu Machine, worked all properly. Port are open, i can see the Landing Page from Tomcat. When i try to login, the Credentials i put in into the tomcat-users.xml do not work. Need help, i am new to Tomcat :( Login Credentials…

tob1zor
- 13
- 1
- 3
1
vote
2 answers
Use tomcat webapp as the root path for apache/mod-jk virtualhost
I have configured a server where lies several domains, and more than one of them have a ajp13-worker associated to it. The configuration file looks like that:
ServerAdmin my@email
ServerName mydomain
…

Kleber Mota
- 93
- 1
- 7
1
vote
1 answer
Deleting Pre-Packaged Tomcat WebApps
I currently work on an excruciatingly slow remote machine and on Tomcat. So, I was wondering, Tomcat comes with some pre-packaged webapps like:
docs
examples
host-manager
manager
ROOT
Now I just wanted to know, can I delete docs and examples from…

hell_storm2004
- 157
- 1
- 3
- 11
0
votes
2 answers
Logs when shutting down tomcat, what should I do with it?
Iget the following when I shutdown tomcat 9.0.24. Should I do something about it or should I do nothing because tomcat is shutting down anyway?
13-Sep-2019 07:59:06.145 INFO [main]
org.apache.catalina.core.StandardServer.await A valid shutdown…

Amos
- 257
- 3
- 4
- 10
0
votes
1 answer
Redirect https and http requests to my web app in tomcat from apache
I have a spring web application running in tomcat which I can access using https://example:8080/myApp. I have installed Apache2 to redirect port 443 requests to tomcat. now I can Access my application without the port number. I have installed SSL…

Sony
- 103
- 1
- 7
0
votes
0 answers
Kubernetes tomcat cluster: skipping state transfer. No members active in cluster group
k8s StatefulSet:
apiVersion: v1
kind: Service
metadata:
name: my-web
labels:
app: my-web
spec:
ports:
- name: http
port: 8080
targetPort: 8080
selector:
app: my-web
type: ClusterIP
---
apiVersion: apps/v1
kind:…

eastwater
- 111
- 2
0
votes
0 answers
Server sends "internal error" response faster after Tomcat upgrade
I recently upgraded our Tomcat server from 7.0.85 to 9.0.70. I am using Apache 2.4.
My Java application runs in a cluster, and it is expected that if the master node fails during a command, the secondary node will take the master role and finish the…
0
votes
0 answers
Configure unique domains for several tomcat webapps
I follow the instructions from here and this to my server.xml file for each domain/webapp:
www.domain1.com

Kleber Mota
- 93
- 1
- 7
0
votes
0 answers
Modifying/Closing Connector 9060 port from server.xml without whole appserver restart
I have an app which listens on 9060 port. What i want to acheive is, if i remove the 9060 port from server.xml and then stop/terminate my app, 9060 port should be completely closed i.e netstat -tanp | grep 9060 - should return nothing.
Currently…

Sash_KP
- 101
- 2