David and Donald,
thanks for the help and changes to that problem and
also for adding the thread pool size in config-substitutions.properties
(GERONIMO-3475).
I changed my current G 2.0.1 files to match your changes on the 2.0.2-SNAPSHOT.
Since we want to go in production with G 2.0.x I'm curious to know if
there is a schedule for the G 2.0.2 release?
Thanks,
Mario
Donald Woods wrote:
Mario, I've opened JIRA 3505 for this
https://issues.apache.org/jira/browse/GERONIMO-3505
and checked it into the 2.0 branch for the 2.0.2 release.
-Donald
For geronimo-jetty6-minimal, the default AJP
Mario Ruebsam wrote:
Hi all,
in the config-substitutions.properties file there is a nice feature to
run more than one instance of Geronimo at the same machine. But the
recommended port offset leads to a conflict.
## To run multiple instances of geronimo choose a portOffset such
that none of the ports below conflict
## Try PortOffset=10
Setting PortOffset to the recommended 10 leads to a conflict because
of the
default AJPPortSecondary port. This one is not configured in default
config.xml
an so will not be changed from the 8019 setting. Setting the offset of
10 to
the AJPPortPrimary (8009) will conflict with the secondary.
How do I configure the AJPPortSecondary port in config.xml?
I already added the config of the primary because it is not part of the
Little-G default config.
<gbean name="JettyAJP13Connector">
<attribute name="host">${ServerHostname}</attribute>
<attribute name="port">${AJPPortPrimary +
PortOffset}</attribute>
<attribute name="redirectPort">${HTTPSPortPrimary +
PortOffset}</attribute>
</gbean>
I know setting the offset to 8 will also help but I have some services
that will then conflict also. So the offset of 10 would be great.
Thanks, Mario