I am trying to start a simple local JProfiler session. I created a session, the host is 127.0.0.1, the default port is 8849, and I pointed the start / shutdown commands to the local installation of tomcat startup.sh/shutdown.sh. I click OK, and I get "Connect to 127.0.0.1:8849", and after 150 seconds (I changed the timeout), it expires and says:
Failed to connect to 127.0.0.1:8849. Verify that the remote address is correct, that the remote program is running correctly, and that the network route allows socket connections.
The address cannot be wrong, and I checked (ps -ef | grep tomcat) that the process has completed, and also checked the tomcat log and is waiting for requests:
INFO: Starting Coyote HTTP/1.1 on http-8080 Apr 15, 2011 7:49:13 AM org.apache.jk.common.ChannelSocket init INFO: JK: ajp13 listening on /0.0.0.0:8009 Apr 15, 2011 7:49:13 AM org.apache.jk.server.JkMain start INFO: Jk running ID=0 time=0/21 config=null Apr 15, 2011 7:49:13 AM org.apache.catalina.startup.Catalina start INFO: Server startup in 47312 ms
Is there anything else I need to do to open the port? For example, should I change the JAVA_OPTS that are passed to tomcat?
Kevin source share