Environment configuration

JDBC replacement

  • Path: Installation folder / resources / lib / jdbc

  • How to replace

    Replace the internal-jdbc file under that folder.


Usage of Debug JDBC

  • Path: Installation folder / resources / lib / jdbc

  • Usage Replace internal-jdbc file to debug jdbc file. (internal-jdbc for Debug)


JVM Options configuration

  • Path: Installation folder / resources / lib / agent

  • Configuration file: jvm.options

  • How to configure

    • Write the desired JVM options in the jvm.options file.

    • Options start with the - character and must be written on a single line without newlines.

    • Lines starting with the # character are treated as comments.

  • Example

    # Example of memory size setting
    -Xms512m
    -Xmx2048m  
    
    # Example of enabling debug mode
    -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005

Last updated