Go Live Start carddemo application failed - AWS Mainframe modernization application

0

Go Live Start carddemo application failed. Following is the error from CloudWatch log: com.netfective[ ERROR] 2024-07-02 18:56:06 [main] Catalina - No shutdown port configured. Shut down server through OS signal. Server not shut down.

java.base@11.0.23/java.util.concurrent.locks.LockSupport.park(LockSupport.java:194[ ERROR] 2024-07-02 20:14:42 [main] Catalina - No shutdown port configured. Shut down server through OS signal. Server not shut down.

This looks like error related to Tomcat server.

server.xml has the shutdown port details: <Server port="8005" shutdown="SHUTDOWN"> <Listener className="org.apache.catalina.startup.VersionLoggerListener" />

<!-- Security listener. Documentation at /docs/config/listeners.html <Listener className="org.apache.catalina.security.SecurityListener" /> How this error can be resolved ? Does this port need to be configured anywhere or need to update catalina.properties ? Thanks Praveen
1 Answer
0
Accepted Answer

Ensure that the port 8005 is available and not being used by another process. You can use tools like netstat to check this. Also, you would not have any firewall rules locking this port.

Is the server.xml readable by Tomcat?

profile picture
EXPERT
answered 6 days ago
  • Thanks for the response.

    The port 8005 is not used by any process and I don't have any firewall rules locking this port. The file server.xml should be readable by Tomcat, but how do I find that if its not accessible by Tomcat or not ?

    Thank you.