Enabling application debugger support

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

Warning: You should not run this operation on a production site.

To enable application debugging:

  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 the following command:
     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.