Enable Application Debugger Support

The Jive web application is capable of accepting remote Java debuggers. To enable debugging, set the necessary additional java arguments before starting the managed application to be debugged using the following steps.

Warning: You should not run this operation on a production site.
  1. Run jive list webapp.custom_jvm_args to check whether you have an override value already set for webapp.custom_jvm_args.
  2. If you have not set a value for this property, run the following command:
    jive set webapp.custom_jvm_args " -Xdebug -Xrunjdwp:transport=dt_socket,address=9090,suspend=n,server=y"
  3. If you already have a value for this property, run:
     jive set webapp.custom_jvm_args " PREVIOUS_VALUE_HERE -Xdebug -Xrunjdwp:transport=dt_socket,address=9090,suspend=n,server=y"
  4. To apply your changes, run jive restart webapp.