Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Stop the server.
  2. Backup the server's <Geronimo_HOME>/var/config/config.xml file (where <Geronimo_HOME> is the installation directory) and then open the file in an editor.
  3. Find the <module> tag for the org.apache.geronimo.framework/rmi-naming module and update the following <gbean> element inside the <module> element.
    Code Block
    XML
    XML
    borderStylesolid
    <gbean name="DefaultThreadPool">
          <attribute name="keepAliveTime">30000</attribute>
          <attribute name="minPoolSize">${MinThreadPoolSize}</attribute>
          <attribute name="maxPoolSize">${MaxThreadPoolSize}</attribute>
    </gbean>
    
    Note that ${\MinThreadPoolSize}\ and _${\MaxThreadPoolSize}_ are defined in <Geronimo_HOME>/var/config/config-sbustitions.properties already, you can either change them in that file or replace them with new values in config.xml directly.

...