Questions tagged [catalina]

Catalina is Tomcat's component that interacts with Java servlets. For questions about macOS Catalina, please use the [macos-catalina] tag.

Catalina is Tomcat's servlet container. Catalina implements Sun Microsystems' specifications for servlet and JavaServer Pages (JSP).

Tomcat is actually composed of a number of components, including a Tomcat JSP engine and a variety of different connectors, but its core component is called Catalina. Catalina provides Tomcat's actual implementation of the servlet specification; when you start up your Tomcat server, you're actually starting Catalina.

Read more

338 questions
9
votes
3 answers

Error during starting tomcat in remote debug mode

Tomcat is not starting in debug mode. Getting below logs. C:\ApacheSoft\apache-tomcat-7.0.67\bin>catalina.bat jpda start Using CATALINA_BASE: "C:\ApacheSoft\apache-tomcat-7.0.67" Using CATALINA_HOME: …
Ashis Jena
  • 330
  • 1
  • 3
  • 15
8
votes
1 answer

Intermittent 102 Error (ERR_CONNECTION_REFUSED) when connecting to JIRA

For the last few months we have suffered from intermittent 102 errors when trying to connect to our internal server hosting JIRA and Stash over port 8080 and 7990 respectively. I'm not familiar with the Java stack but I believe that when installing…
Alasdair Stark
  • 1,115
  • 8
  • 29
8
votes
0 answers

Starting Tomcat Failed to initialize end point associated with ProtocolHandler

I'm trying to start a tomcat instance(the only tomcat I have), and I'm getting some weird problems, I know that this error: Failed to initialize end point associated with ProtocolHandler is because some other application is using the same port,…
CIOC
  • 1,221
  • 2
  • 17
  • 44
8
votes
3 answers

Apache Catalina Error:- "SEVERE: Error listenerStart"

I am getting the following error when i tried to start a java spring software that runs under apache:- Sep 24, 2012 12:08:20 PM org.apache.catalina.core.StandardContext start SEVERE: Error listenerStart Sep 24, 2012 12:08:20 PM…
John John
  • 185
  • 7
  • 17
  • 45
6
votes
1 answer

Custom Tomcat Valve contained in web app WAR file

I'm looking to implement a custom Valve and configuring it using META-INF/context.xml. At the moment though, when context.xml is parsed during deployment, Tomcat (6.0.32) dies with a ClassNotFoundException on my custom Valve implementation. I'm…
Dave G
  • 9,152
  • 33
  • 40
6
votes
2 answers

How to ignore a specific exception in Eclipse

The exception that I want to ignore/mute is the following: Resolved exception caused by handler execution: org.apache.catalina.connector.ClientAbortException: java.net.SocketException: Software caused connection abort: socket write error And is…
Christos Karapapas
  • 835
  • 3
  • 12
  • 32
6
votes
2 answers

Run "apereo/cas" docker image prints "Failed to start connector" error

My goal is to run CAS to replace ADFS. I thought starting with the docker image is a good place to begin. I've tried running two different versions of apereo/cas and both have the same error. Here's what I tried. command docker run -p 8080:8080 -p…
styfle
  • 16,664
  • 22
  • 73
  • 115
6
votes
1 answer

Extend the set of reloadable directories on tomcat

I would like to extend the set of reloadable directories on tomcat 7.0.59. When reloadable attribute within Context is set to true, tomcat monitors classes in: /WEB-INF/classes/ and /WEB-INF/lib. Set to true if you want Catalina to monitor classes…
luke
  • 2,711
  • 19
  • 42
6
votes
1 answer

Temporarily set Environment variables with batch file

I'd like temporarily set Environment variables like Catalina and Java_Home using a batch file, without making persistent changes. Changes should be removed after the execution of a web-page. There's a way to do it?
Camel89
  • 61
  • 1
  • 2
6
votes
4 answers

NetBeans 8.0.2 fails to start Tomcat because of missing catalina.bat

I just finished setting up the prelimanary steps for a Java Web project on NetBeans. I installed NetBeans and created a network drive using Samba on my home Ubuntu Server, which has Tomcat7. When I try to run the example Hello World project, i get…
Wade Guest
  • 65
  • 1
  • 1
  • 6
6
votes
1 answer

TLS_RSA_WITH_AES_128_CBC_SHA and SSL_RSA_WITH_AES_128_CBC_SHA

Is there any difference between these cipher suites? They look the same however the first three letters are different. I am referring to TLS_RSA_WITH_AES_128_CBC_SHA and SSL_RSA_WITH_AES_128_CBC_SHA.
cateof
  • 6,100
  • 19
  • 71
  • 141
6
votes
2 answers

Changing of location of catalina.pid for tomcat

"catalina.pid" is not in the "tomcat/bin" folders where it should be and it isn't created there during tomcat starting. The question is how (where) i can redefine path to "catalina.pid" to force it to be created in a right folder. Thanks in advance,
user2604979
  • 61
  • 1
  • 1
  • 3
6
votes
2 answers

Can't debug Java project in IDEA IntelliJ 12

On OSX w/Tomcat7 and IDEA IntelliJ 12. The run configuration works fine. The debug configuration complains with: /usr/local/Cellar/tomcat/7.0.37/libexec/bin/catalina.sh run Error occurred during initialization of VM agent library failed…
Ryan
  • 106
  • 1
  • 8
6
votes
2 answers

Tomcat catalina.out file is growing very rapidly! How to prevent Hibernate's INFO and DEBUG statements from getting added to catalina.out file?

My Java application (Spring, Hibernate, MySQL) is running in Tomcat 5.5 After the last set of changes to my application, Tomcat's catalina.out file is growing very rapidly. With each query it adds a few MBs of INFO and DEBUG statements to the…
Dilip Shah
  • 277
  • 2
  • 5
  • 16
5
votes
2 answers

How to configure tomcat to rollover catalina.log files

I'm trying to configure my tomcat to rollover log files once a size limit is reached. I'm running tomcat as a windows service and am redirecting all my stdout to catalina.log. This is how I configured by logging.properties to set a size limit. But…
Srinivas
  • 465
  • 5
  • 9
  • 15
1
2
3
22 23