How can I enable the Remote Interface?

I have not enable the remote GUI on the first setup of i-net ClearReports. How can I enable it now?

If you can start the recovery manager (StandaloneConfiguration) from the installation directory then you can:

  • Version <= 14:
    In the category “Web Server” you can enable the flag “Remote interface enabled”

  • Version >= 15
    In the category “Plugins” you can enable the plugin “Remote GUI”

On a headless system you can set the IP address of your client as command line parameter:

java -jar core/ClearReports.jar -client.ip <yourip>

On the console you will see the URL that you can call from your local browser.

If it is not possible to start the recovery manager then you can:

  • Export the configuration with command line parameter:

    java -jar core/ClearReports.jar -exportconfig System/Default /tmp/configuration.properties
    
  • Modify the property file. If the properties file contains “remoteInterface.enabled=false”, then the Remote Interface is disabled. To enable it, set the value to true: “remoteInterface.enabled=true”.

  • Import the configuration with command line parameter:

     java -jar core/ClearReports.jar -forceImportConfig System/Default /tmp/configuration.properties