Jump to content
Changes to the Jaspersoft community edition download ×
  • This documentation is an older version of JasperReports Server Source Build Guide. View the latest documentation.

    Setting Java JVM Options

    To run properly, JasperReports Server needs more Java memory than the default settings. But for development work, the settings can be simpler than those recommended for production. For full information on recommended JAVA_OPTS settings, see the JasperReports Server Installation Guide.

    Tomcat and JBoss JVM Options

    Here are some typical settings for JVM options that affect JasperReports Server. For space reasons, some of the options are displayed on multiple lines; make sure you set all options.

    JVM Options on Windows

    Options for all app servers

    set JAVA_OPTS=%JAVA_OPTS% -Xms1024m -Xmx2048m[/code]
    set JAVA_OPTS=%JAVA_OPTS% -Xss2m -XX:+UseConcMarkSweepGC [/code]                    

    For Oracle

    set JAVA_OPTS=%JAVA_OPTS% -Doracle.jdbc.defaultNChar=true[/code]                    

    JasperReports Server doesn’t provide a virtual X frame buffer on Linux. If your Linux applications are graphical, set the ‑Djava.awt.headless=true to prevent Java from trying to connect to an X-Server for image processing.

    JVM Options on Linux and Mac OSX

    Options for all app servers

    export JAVA_OPTS="$JAVA_OPTS -Xms1024m -Xmx2048m"[/code]
    export JAVA_OPTS="$JAVA_OPTS -Xss2m"[/code]
    export JAVA_OPTS="$JAVA_OPTS -XX:+UseConcMarkSweepGC"[/code]                    

    For Oracle

    export JAVA_OPTS="$JAVA_OPTS -Doracle.jdbc.defaultNChar=true"[/code]                    

    You can set JVM options in a number of ways. For example, you can add your JAVA_OPTS settings to these files:

    File

    Add JVM Options Below the Lines Shown Here:

    <tomcat>/bin/setclasspath.bat

    set JAVA_ENDORSED_DIRS=%BASEDIR%commonendorsed[/code]                    

    <tomcat>/bin/setclasspath.sh

    JAVA_ENDORSED_DIRS="$BASEDIR"/common/endorsed[/code]                    

    <tomcat>/bin/setenv.bat or

    <tomcat>/bin/setenv.sh

    JAVA_OPTS setting can go anywhere in this file.

    <jboss>/bin/run.bat

    <jboss>/bin/run.sh

    set JAVA_OPTS=%JAVA_OPTS% -Dprogram.name=%PROGNAME% [/code]                        

    or

    export JAVA_OPTS="$JAVA_OPTS -Dprogram.name=$PROGNAME"[/code]                    

    note-icon-ns_28x28.png.e2172ce08492a4a116c2b6990adf444c.png

    For information on recommended JAVA_OPTS settings for all certified application servers, please refer to the JasperReports Server Installation Guide.

    Configuring the JasperReports Server License File

    Commercial editions of JasperReports Server require a license file. The source code includes an evaluation license. You can use this license or replace it with the one you received from TIBCO Jaspersoft Technical Support (http://support.tibco.com) or your sales representative.

    Configuring the License for All Application Servers

    The main source build section describes placing a license in the home folder of the user running the application server. See Put jasperserver.license in Place.

    Configure the License in the Tomcat Scripts

    If you would like to locate your jasperserver.license in a specific folder, you can set a Java property in the shell script files used to control Tomcat.

    JasperReports Server will look for a property named js.license.directory and use that folder as the location to find the jasperserver.license file.

    For instance, if you want to point JasperReports Server to the license file in the root of the source package, update the following shell script:

    Windows:

    <tomcat>/bin/setclasspath.bat

    Linux:

    <tomcat>/bin/setclasspath.sh

    And you could update the file with the following setting:

    Windows:

    Linux:

    The jasperserver.license file can reside anywhere on the file system that's accessible from your application server. The js.license.directory setting should point to the folder containing the jasperserver.license.

    note-icon-ns.png.2df91737ce5630505e5faec98663ae5e.png

    You'll find more information on configuring the jasperserver.license for all certified application servers in the JasperReports Server Installation Guide.

    Open topic with navigation


    User Feedback

    Recommended Comments

    There are no comments to display.



    Guest
    This is now closed for further comments

×
×
  • Create New...