Versions Compared

Key

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

...

  1. Stop the server;
  2. Backup <geronimo_home>/var/config/config.xml file and then open it in an editor.
  3. Add the following code right after <module name="org.apache.geronimo.configs/tomcat6/2.2/car"> tag to disable the Access Log Valve, and then restart the server after you save the file.
    Code Block
    <module name="org.apache.geronimo.configs/tomcat6/2.2/car">
    ...
        <gbean name="TomcatEngine">
            <attribute name="initParams">
                name=Geronimo
            </attribute>
            <reference name="TomcatValveChain"/>
        </gbean>
        <gbean name="AccessLogValve" load="false"></gbean>
    ...
    

Add a second

...

Valve

Let's take the Single Sign-on Valve as an example here. The Single Sign-on Valve is used to give users the ability to sign on to any Web application and then have their identity recognized by all other Web applications within the same container. To add the Single Sign-on Valve to the Access Log Valve in the initial valve chain, follow the procedure below.

...