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

358 questions
0
votes
2 answers

Search a file in Unix

I need to search a file in unix which starts with "catalina" find ... what to be used effectively -name, -exec ? Whats the expression Also I need to show few files at a time, then show some more. There are huge set of log files in there. I know…
Some Java Guy
  • 4,992
  • 19
  • 71
  • 108
0
votes
1 answer

How to parse multiple line catalina log in python - regex

I have catalina log: oct 21, 2016 12:32:13 AM org.wso2.carbon.identity.sso.agent.saml.SSOAgentHttpSessionListener sessionCreated WARNING: HTTP Session created without LoggedInSessionBean oct 21, 2016 3:03:20 AM…
caroline
  • 161
  • 2
  • 15
0
votes
1 answer

Not getting detailed error log for java application on Tomcat on Azure App Service

We deployed a java web application (WAR file) onto an Azure App Service with newest Tomcat (8.5). The WAR file is detected by Azure but on startup we are seeing the following in the catalina.date.log 06-Feb-2018 07:57:24.494 INFO [main]…
Mathias Rönnlund
  • 4,078
  • 7
  • 43
  • 96
0
votes
1 answer

Is there a way to host the logs of tomcat (catalina, error) logs of one server into another server?

I've hosted few Rest APIs on my tomcat server. The logs generated are huge and causing frequent throttling of server. I just want to move these logs to another server automatically. Is there any way to do that? The logs on the main server should be…
user7827445
0
votes
1 answer

Why daily catalina.*.log are missing?

I have been searching myself for a solution, but I could not find anything. I have tomcat8 with some application deployed on it. During the last weekend, the daily catalina.*.log files have not been created. Indeed, if I run on command line ls, I…
Francesco Sgaramella
  • 1,009
  • 5
  • 21
  • 39
0
votes
0 answers

How can I fix FileNotFoundException exception if the file is already there?

I created a .jks file with this command keytool -genkey -alias TeamCity -keyalg RSA -keystore KeyStoreTC.jks -keysize 2048 after that I moved the .jsk file to my directory but I am receiving this error Failed to load keystore type JKS with path …
Marion
  • 335
  • 1
  • 4
  • 15
0
votes
1 answer

Catalina-Opts with string parameter is not working

On my linux machine I want to configure tomcat 8 with the following catalina_opts: export CATALINA_OPTS="$CATALINA_OPTS -Dsina.elasticsearch.cluster.nodes=sina-1:9300 -Dsina.elasticsearch.cluster.name=sinasuite-dev -Dsina.rabbitmq.host=sina-1…
natslash
  • 65
  • 6
0
votes
0 answers

Error in catalina log tomcat 8

I can start my tomcat, but i can't access my application, after i check my catalina log in my tomcat, show the error below : 19-Jul-2017 04:35:17.206 SEVERE [localhost-startStop-1] org.apache.catalina.core.ContainerBase.addChildInternal…
Novice
  • 307
  • 1
  • 4
  • 14
0
votes
1 answer

In which Tier is Catalina RealmBase situated?

I am confused if Catalina RealmBase (DataSourceRealm, or the others) situated in Presentation Tier or in the business Logic Tier (Integration or Business Tier). I created a class SignatureRealm extends DataSourceRealm to authenticate the users. The…
Hasan
  • 296
  • 1
  • 8
  • 23
0
votes
1 answer

Spring Tomcat Startup Issue setCatalinaBase(Ljava/io/File;)

I'm fairly new to spring and spring boot so am not 100 percent sure what i'm doing... Up until a few days ago everything was working fine with my springboot application, but now it throws this error upon starting: Exception encountered during…
0
votes
1 answer

Catalina error in Tomcat Eclipse with Spring MVC

I was making a basic project in SpringMVC and had done only two things : 1)added details in web.xml as follows :
Utkarsh Saraf
  • 475
  • 8
  • 31
0
votes
1 answer

Error when shutting down tomcat server

I had started tomcat in debug mode by setting the java_opts. It worked I was able to debug using IntelliJ. However, when I try to stop tomcat using ./catalina stop I am getting the following error: ERROR: transport error 202: bind failed: Address…
Ravi
  • 323
  • 2
  • 6
  • 18
0
votes
0 answers

Tomcat shutdown automatically

We are converting files from EPS to EPS using java. If we convert 50 to 100 files, its working fine. If we convert more than 500 files also, it is working fine. But very few times when we convert more than 500 files, Tomcat is shutting down. If we…
0
votes
2 answers

Can not start/shutdown tomcat in command line

I just install tomcat8.5.9,after I start/shutdown tomcat several times(work fine),it can not satrt/stop.The description is: ceny@master:~/tools/apache-tomcat-8.5.9$ bin/catalina.sh stop -force Using CATALINA_BASE: …
ceny
  • 5
  • 6
0
votes
1 answer

Monitoring Tomcat via JMX

We have the challenge to monitor some Tomcats via JMX (and finally via Monitis via the JMX connection). Tomcat exposes multiple MBean attributes via JMX, but I cannot find any documentation or even an overview about the attributes and their meaning.…
Tobias
  • 7,238
  • 10
  • 46
  • 77