The RTC 2.0 version for Rational Asset Manager 7.5 does not start
One answer
It appears the port number 9005, where tomcat is listening for SHUTDOWN signal, is already used by another process. This was odd behaviour, since the tomcat of RTC was working fine with the settings as is.
I changed the setting for Tomcat to use another port number( from 9005 to 9006) by editing %CATALINA_HOME%\conf\server.xml:
I changed the setting for Tomcat to use another port number( from 9005 to 9006) by editing %CATALINA_HOME%\conf\server.xml:
<
Server
port
=
"9006"
shutdown
=
"SHUTDOWN"
>
|