Application server debugging: set jpda mode?

Answered

 I am looking to debug a local copy of a tomEE server. 

 JPDA has two modes: either the app server listens for an incoming JDWP connection from the debugger and the debugger initiates the connection, or the debugger listens for the connection and the app server initiates it. 

It appears that the IDEA configuration for a local tomEE server starts both the debugger and the app server in "listen" mode. So the only way to debug is to start the app server in "debug" mode and then immediately select run/attach-to-local-process. 

This works OK, but it would be nice to avoid the extra step. 

How can I configure the tomEE application server under IDEA to start either the debugger or the app server in "actively connect" mode so they don't each sit there waiting for the other to connect. I can't find anything under settings/Debugger or in the server configuration dialog to select this. 

 

0
7 comments
Official comment

Update: First of all, ensure that you are launching the run configuration in debug mode, your server output seems to be for the Run mode. 

If this does not help, my original answer below still holds: 

As far as I see, you are trying to debug the application deployed outside of IDEA directly to `<tomEE>/webapps/dojo.war`. 

While this use case is also supposed to work, it is not an intended way of using of the local TomEE run configuration. I have submitted https://youtrack.jetbrains.com/issue/IDEA-188053 for your case. In the meanwhile I would suggest to switch to intended way: 

  • on the Deployment tab of the TomEE Run configuration dialog, click + -> External Source -> choose original location of the dojo.war from your build
  • * Make sure it is a location outside of the server hot deploy folder, so it is NOT at /home/cowens/IDEA/ct704/base/webapps/dojo.war * 
  • select the war in the "Deploy on server startup" list, enter appropriate "Application context"
  • ensure that "No artifacts mmarked for deployment"  warning has gone from the run configuration 
  • stop the server, remove externally deployed http:///home/cowens/IDEA/ct704/base/webapps/dojo.war, also remove its auto-exploded counterpart at http:///home/cowens/IDEA/ct704/base/webapps/dojo/
  • launch TomEE debug configuration in the debug mode

 

If this still does not help, please attach (better to use in https://youtrack.jetbrains.com/issue/IDEA-188053 for further discussion) 

  • .idea folder after the changes described above
  • full textual output from Server tab of the Debug tool window after configuration has launched

Hope that helps, 

 

 

There should be no extra steps needed. Make sure you are using the default TomEE Local Run/Debug Configuration. The relevant options are located under Startup/Connection tab for Debug mode:

These options are also printed in Console tab when you start the server. What do you have there?

1
Avatar
Permanently deleted user

My settings look like that, too. The part you have outlined in red - shows "server=n". I believe that means that instead of listening for connections from a debugger, that Tomcat is going to try to contact the debugger on port 58458, right?  Where do I configure the debugger to listen on that port?

When I try to start the server in debug mode, I get an error like this: 

 

Unable to open debugger port (127.0.0.1:58458): java.net.SocketException "Socket closed"

0

 

>Tomcat is going to try to contact the debugger on port 58458, right? Where do I configure the debugger to listen on that port?

It is configured in the same dialog:

>Unable to open debugger port (127.0.0.1:58458): java.net.SocketException "Socket closed"

Something is preventing IDEA to open the socket on the specified port. Check that the port is not already occupied by another process, try using different port. Try restarting the pc. If you have antivirus/firewall try with it disabled or make sure that IDE settings directories, IDE process, installation home and project files are excluded from the scan. Check that you are using the default configuration or of you are modifying JAVA_OPTS that they are correctly set. Check also this SO thread for possible reasons.

If issue remains, post complete textual output from Console tab when you start Run/Debug Configuration.

 
0
Avatar
Permanently deleted user

I have resolved the port in use problem. Stale processes were hanging around. At this point the tomEE server and the debugger both start; the debugger displays "Listening to port 58458", but the breakpoints don't seem to have any effect.

0

 

Please attach screenshots of Run/Debug Configuration Server tab and Startup/Connection tab with Debug mode selected and full textual output from Server tab when you launch configuration.

0
Avatar
Permanently deleted user

Server tab output:

 

/usr/lib/jvm/java-1.8.0-openjdk/bin/java -Dfile.encoding=UTF-8 -classpath /home/cowens/IDEA/ct704/home/lib/javaee-api-7.0-1.jar:/home/cowens/IDEA/ct704/home/lib/jsp-api.jar:/home/cowens/IDEA/ct704/home/lib/servlet-api.jar:/home/cowens/IDEA/ct704/home/lib:/home/cowens/IDEA/ct704/home/lib/activation-1.1.jar:/home/cowens/IDEA/ct704/home/lib/activemq-broker-5.14.5.jar:/home/cowens/IDEA/ct704/home/lib/activemq-client-5.14.5.jar:/home/cowens/IDEA/ct704/home/lib/activemq-jdbc-store-5.14.5.jar:/home/cowens/IDEA/ct704/home/lib/activemq-kahadb-store-5.14.5.jar:/home/cowens/IDEA/ct704/home/lib/activemq-openwire-legacy-5.14.5.jar:/home/cowens/IDEA/ct704/home/lib/activemq-protobuf-1.1.jar:/home/cowens/IDEA/ct704/home/lib/activemq-ra-5.14.5.jar:/home/cowens/IDEA/ct704/home/lib/batchee-jbatch-0.4-incubating.jar:/home/cowens/IDEA/ct704/home/lib/bcprov-jdk15on-1.57.jar:/home/cowens/IDEA/ct704/home/lib/bval-core-1.1.2.jar:/home/cowens/IDEA/ct704/home/lib/bval-jsr-1.1.2.jar:/home/cowens/IDEA/ct704/home/lib/catalina-ant.jar:/home/cowens/IDEA/ct704/home/lib/catalina-ha.jar:/home/cowens/IDEA/ct704/home/lib/catalina-storeconfig.jar:/home/cowens/IDEA/ct704/home/lib/catalina-tribes.jar:/home/cowens/IDEA/ct704/home/lib/catalina.jar:/home/cowens/IDEA/ct704/home/lib/commons-beanutils-1.9.3.jar:/home/cowens/IDEA/ct704/home/lib/commons-cli-1.2.jar:/home/cowens/IDEA/ct704/home/lib/commons-codec-1.10.jar:/home/cowens/IDEA/ct704/home/lib/commons-collections-3.2.2.jar:/home/cowens/IDEA/ct704/home/lib/commons-dbcp2-2.1.jar:/home/cowens/IDEA/ct704/home/lib/commons-digester-1.8.jar:/home/cowens/IDEA/ct704/home/lib/commons-jcs-core-2.1.jar:/home/cowens/IDEA/ct704/home/lib/commons-jcs-jcache-2.1.jar:/home/cowens/IDEA/ct704/home/lib/commons-lang-2.6.jar:/home/cowens/IDEA/ct704/home/lib/commons-lang3-3.5.jar:/home/cowens/IDEA/ct704/home/lib/commons-logging-1.2.jar:/home/cowens/IDEA/ct704/home/lib/commons-pool2-2.3.jar:/home/cowens/IDEA/ct704/home/lib/cryptacular-1.0.jar:/home/cowens/IDEA/ct704/home/lib/cxf-core-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-bindings-soap-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-bindings-xml-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-databinding-jaxb-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-frontend-jaxrs-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-frontend-jaxws-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-frontend-simple-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-management-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-client-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-extension-providers-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-extension-search-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-json-basic-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-security-cors-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-security-jose-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-security-jose-jaxrs-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-security-oauth2-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-rs-service-description-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-security-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-security-saml-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-transports-http-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-ws-addr-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-ws-policy-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-ws-security-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/cxf-rt-wsdl-3.1.13.jar:/home/cowens/IDEA/ct704/home/lib/ecj-4.6.3.jar:/home/cowens/IDEA/ct704/home/lib/el-api.jar:/home/cowens/IDEA/ct704/home/lib/geronimo-connector-3.1.4.jar:/home/cowens/IDEA/ct704/home/lib/geronimo-javamail_1.4_mail-1.9.0-alpha-2.jar:/home/cowens/IDEA/ct704/home/lib/geronimo-transaction-3.1.4.jar:/home/cowens/IDEA/ct704/home/lib/hawtbuf-1.11.jar:/home/cowens/IDEA/ct704/home/lib/howl-1.0.1-1.jar:/home/cowens/IDEA/ct704/home/lib/hsqldb-2.3.2.jar:/home/cowens/IDEA/ct704/home/lib/jasper-el.jar:/home/cowens/IDEA/ct704/home/lib/jasper.jar:/home/cowens/IDEA/ct704/home/lib/jaspic-api.jar:/home/cowens/IDEA/ct704/home/lib/jasypt-1.9.2.jar:/home/cowens/IDEA/ct704/home/lib/java-support-7.1.1.jar:/home/cowens/IDEA/ct704/home/lib/javax.xml.soap-api-1.3.5.jar:/home/cowens/IDEA/ct704/home/lib/jaxb-api-2.3.0.jar:/home/cowens/IDEA/ct704/home/lib/jaxb-core-2.3.0.jar:/home/cowens/IDEA/ct704/home/lib/jaxb-impl-2.3.0.jar:/home/cowens/IDEA/ct704/home/lib/joda-time-2.7.jar:/home/cowens/IDEA/ct704/home/lib/johnzon-core-1.0.0.jar:/home/cowens/IDEA/ct704/home/lib/johnzon-jaxrs-1.0.0.jar:/home/cowens/IDEA/ct704/home/lib/johnzon-mapper-1.0.0.jar:/home/cowens/IDEA/ct704/home/lib/jssc-2.8.0.jar:/home/cowens/IDEA/ct704/home/lib/mbean-annotation-api-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/mimepull-1.9.jar:/home/cowens/IDEA/ct704/home/lib/myfaces-api-2.2.12.jar:/home/cowens/IDEA/ct704/home/lib/myfaces-impl-2.2.12.jar:/home/cowens/IDEA/ct704/home/lib/neethi-3.0.3.jar:/home/cowens/IDEA/ct704/home/lib/openejb-api-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-client-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-core-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-cxf-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-cxf-rs-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-cxf-transport-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-ejbd-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-hsql-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-http-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-javaagent.jar:/home/cowens/IDEA/ct704/home/lib/openejb-jee-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-jee-accessors-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-jpa-integration-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-loader-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-rest-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openejb-server-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/openjpa-2.4.2.jar:/home/cowens/IDEA/ct704/home/lib/openejb-webservices-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-core-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-profile-api-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-saml-api-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-saml-impl-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-security-api-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-security-impl-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-soap-api-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-xacml-api-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-xacml-impl-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-xacml-saml-api-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-xacml-saml-impl-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-xmlsec-api-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/opensaml-xmlsec-impl-3.1.1.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-ee-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-ee-common-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-ejb-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-el22-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-impl-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-jsf-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-spi-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/openwebbeans-web-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/quartz-openejb-shade-2.2.1.jar:/home/cowens/IDEA/ct704/home/lib/saaj-impl-1.3.23.jar:/home/cowens/IDEA/ct704/home/lib/serializer-2.7.2.jar:/home/cowens/IDEA/ct704/home/lib/serp-1.15.1.jar:/home/cowens/IDEA/ct704/home/lib/slf4j-api-1.7.21.jar:/home/cowens/IDEA/ct704/home/lib/slf4j-jdk14-1.7.21.jar:/home/cowens/IDEA/ct704/home/lib/stax-api-1.0-2.jar:/home/cowens/IDEA/ct704/home/lib/stax-ex-1.7.4.jar:/home/cowens/IDEA/ct704/home/lib/stax2-api-3.1.4.jar:/home/cowens/IDEA/ct704/home/lib/swizzle-stream-1.6.2.jar:/home/cowens/IDEA/ct704/home/lib/sxc-jaxb-core-0.8.jar:/home/cowens/IDEA/ct704/home/lib/sxc-runtime-0.8.jar:/home/cowens/IDEA/ct704/home/lib/taglibs-standard-impl-1.2.5.jar:/home/cowens/IDEA/ct704/home/lib/taglibs-standard-jstlel-1.2.5.jar:/home/cowens/IDEA/ct704/home/lib/taglibs-standard-spec-1.2.5.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-api.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-coyote.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-dbcp.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-i18n-es.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-i18n-fr.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-i18n-ja.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-jdbc.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-jni.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-util-scan.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-util.jar:/home/cowens/IDEA/ct704/home/lib/tomcat-websocket.jar:/home/cowens/IDEA/ct704/home/lib/tomee-catalina-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-common-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-jaxrs-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-jdbc-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-loader-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-mojarra-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-myfaces-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-webapp-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/tomee-webservices-7.0.4.jar:/home/cowens/IDEA/ct704/home/lib/websocket-api.jar:/home/cowens/IDEA/ct704/home/lib/woodstox-core-asl-4.4.1.jar:/home/cowens/IDEA/ct704/home/lib/wsdl4j-1.6.3.jar:/home/cowens/IDEA/ct704/home/lib/wss4j-bindings-2.1.9.jar:/home/cowens/IDEA/ct704/home/lib/wss4j-policy-2.1.9.jar:/home/cowens/IDEA/ct704/home/lib/wss4j-ws-security-common-2.1.9.jar:/home/cowens/IDEA/ct704/home/lib/wss4j-ws-security-dom-2.1.9.jar:/home/cowens/IDEA/ct704/home/lib/wss4j-ws-security-policy-stax-2.1.9.jar:/home/cowens/IDEA/ct704/home/lib/wss4j-ws-security-stax-2.1.9.jar:/home/cowens/IDEA/ct704/home/lib/xalan-2.7.2.jar:/home/cowens/IDEA/ct704/home/lib/xbean-asm5-shaded-4.5.jar:/home/cowens/IDEA/ct704/home/lib/xbean-bundleutils-4.5.jar:/home/cowens/IDEA/ct704/home/lib/xbean-finder-shaded-4.5.jar:/home/cowens/IDEA/ct704/home/lib/xbean-naming-4.5.jar:/home/cowens/IDEA/ct704/home/lib/xbean-reflect-4.5.jar:/home/cowens/IDEA/ct704/home/lib/xml-resolver-1.2.jar:/home/cowens/IDEA/ct704/home/lib/xmlschema-core-2.2.2.jar:/home/cowens/IDEA/ct704/home/lib/xmlsec-2.0.6.jar:/home/cowens/IDEA/idea-IU-173.4548.28/plugins/JavaEE/lib/javaee-impl.jar:/home/cowens/IDEA/idea-IU-173.4548.28/lib/openapi.jar:/home/cowens/IDEA/idea-IU-173.4548.28/lib/util.jar:/home/cowens/IDEA/idea-IU-173.4548.28/plugins/Tomcat/lib/specifics/tomee-specifics.jar com.intellij.javaee.oss.process.JavaeeProcess 37054 org.jetbrains.idea.tomcat.agent.TomEEAgent
/home/cowens/IDEA/ct704/home/bin/catalina.sh run
09-Mar-2018 23:49:24.745 WARNING [main] sun.reflect.NativeMethodAccessorImpl.invoke Problem with directory [/home/cowens/IDEA/ct704/base/lib], exists: [false], isDirectory: [false], canRead: [false]
09-Mar-2018 23:49:24.746 WARNING [main] sun.reflect.NativeMethodAccessorImpl.invoke Problem with directory [/home/cowens/IDEA/ct704/base/lib], exists: [false], isDirectory: [false], canRead: [false]
09-Mar-2018 23:49:24.971 SEVERE [main] sun.reflect.NativeMethodAccessorImpl.invoke Cannot find specified temporary folder at [/home/cowens/.IntelliJIdea2017.3/system/tomcat/Unnamed_watchdog_13/temp]
09-Mar-2018 23:49:25.861 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Server version: Apache Tomcat (TomEE)/8.5.20 (7.0.4)
09-Mar-2018 23:49:25.861 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Server built: Aug 2 2017 21:35:49 UTC
09-Mar-2018 23:49:25.861 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Server number: 8.5.20.0
09-Mar-2018 23:49:25.861 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke OS Name: Linux
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke OS Version: 3.10.0-693.11.1.el7.x86_64
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Architecture: amd64
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Java Home: /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.161-0.b14.el7_4.x86_64/jre
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke JVM Version: 1.8.0_161-b14
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke JVM Vendor: Oracle Corporation
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke CATALINA_BASE: /home/cowens/.IntelliJIdea2017.3/system/tomcat/Unnamed_watchdog_13
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke CATALINA_HOME: /home/cowens/IDEA/ct704/home
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Command line argument: -Djava.util.logging.config.file=/home/cowens/.IntelliJIdea2017.3/system/tomcat/Unnamed_watchdog_13/conf/logging.properties
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Command line argument: -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Command line argument: -Djava.awt.headless=true
09-Mar-2018 23:49:25.862 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Command line argument: -Dorg.apache.catalina.security.SecurityListener.UMASK=0002
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.NativeMethodAccessorImpl.invoke Command line argument: -Djdk.tls.ephemeralDHKeySize=2048
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Djava.protocol.handler.pkgs=org.apache.catalina.webresources
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Djava.awt.headless=true
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Dorg.apache.catalina.security.SecurityListener.UMASK=0002
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Xms512m
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Xmx2048m
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -XX:+UseConcMarkSweepGC
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -XX:+CMSClassUnloadingEnabled
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Xss256k
09-Mar-2018 23:49:25.863 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -XX:+UseCompressedOops
09-Mar-2018 23:49:25.864 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Djava.security.egd=file:/dev/./urandom
09-Mar-2018 23:49:25.864 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -XX:+HeapDumpOnOutOfMemoryError
09-Mar-2018 23:49:25.864 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -XX:HeapDumpPath=/home/cowens/.IntelliJIdea2017.3/system/tomcat/Unnamed_watchdog_13/logs
09-Mar-2018 23:49:25.864 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Dcatalina.base=/home/cowens/.IntelliJIdea2017.3/system/tomcat/Unnamed_watchdog_13
09-Mar-2018 23:49:25.864 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Dcatalina.home=/home/cowens/IDEA/ct704/home
09-Mar-2018 23:49:25.864 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Command line argument: -Djava.io.tmpdir=/home/cowens/.IntelliJIdea2017.3/system/tomcat/Unnamed_watchdog_13/temp
09-Mar-2018 23:49:25.864 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib]
09-Mar-2018 23:49:26.323 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Initializing ProtocolHandler ["http-nio-8080"]
09-Mar-2018 23:49:26.343 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Using a shared selector for servlet write/read
09-Mar-2018 23:49:26.347 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Initializing ProtocolHandler ["https-jsse-nio-8443"]
09-Mar-2018 23:49:26.659 WARNING [main] sun.reflect.NativeMethodAccessorImpl.invoke The trusted certificate with alias [mockutility] and DN [O=TestOrg, C=US, ST=NY, L=NY, CN=mockutility] is not valid due to [NotAfter: Thu May 05 23:42:02 UTC 2016]. Certificates signed by this trusted certificate WILL be accepted
09-Mar-2018 23:49:26.662 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Using a shared selector for servlet write/read
09-Mar-2018 23:49:27.844 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Initialization processed in 2874 ms
09-Mar-2018 23:49:27.866 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Starting service [Catalina]
09-Mar-2018 23:49:27.866 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Starting Servlet Engine: Apache Tomcat (TomEE)/8.5.20 (7.0.4)
09-Mar-2018 23:49:27.967 INFO [Catalina-startStop-1] sun.reflect.DelegatingMethodAccessorImpl.invoke Unable to set the web application class loader property [clearReferencesRmiTargets] to [true] as the property does not exist.
09-Mar-2018 23:49:27.989 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Starting ProtocolHandler ["http-nio-8080"]
09-Mar-2018 23:49:27.998 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Starting ProtocolHandler ["https-jsse-nio-8443"]
09-Mar-2018 23:49:28.002 INFO [main] sun.reflect.DelegatingMethodAccessorImpl.invoke Server startup in 157 ms
09-Mar-2018 23:49:37.999 INFO [localhost-startStop-1] sun.reflect.DelegatingMethodAccessorImpl.invoke Deploying web application archive [/home/cowens/IDEA/ct704/base/webapps/dojo.war]
0
1

Please sign in to leave a comment.