CA Virtual Assurance Tomcat does not stay running
search cancel

CA Virtual Assurance Tomcat does not stay running

book

Article ID: 276521

calendar_today

Updated On:

Products

CA Virtual Assurance for IM

Issue/Introduction

catalina.out shows the following

2023-11-13 04:06:15.591 T18 I Starting ProtocolHandler ["http-bio-8443"]
2023-11-13 04:06:15.610 T18 I Server startup in 290894 ms
2023-11-13 04:06:15.611 T18 E StandardServer.await: create[localhost:8005]: 
2023-11-13 04:06:15.611 T18 I Pausing ProtocolHandler ["http-bio-8443"]
2023-11-13 04:06:15.663 T18 I Stopping service Catalina
2023-11-13 04:06:15.679 T21 I [en]  CLOSING SolrCore org.apache.solr.core.SolrCore@191e546
2023-11-13 04:06:15.680 T21 I [en] Closing main searcher on request.
2023-11-13 04:06:15.684 T21 I Closing Searcher@12c8dda main

Cause

  • Port Conflict
  • Port 8005 is in use by other application

 

Resolution

Change the shutdown port in server.xml from 8005 to 8006 (or another free port):
 
<Server port="8005" shutdown="SHUTDOWN">
 
to 
 
<Server port="8006" shutdown="SHUTDOWN">