1 Reply Latest reply on May 12, 2003 8:06 AM by dcartier

    How to eliminate mod_jk debug in console

    harry

      Hi ...

      I'm using JBoss-3.0.7_tomcat-4.1.24 and Apache. I use mod_jk to make a communication between them. But after I use it , there's always shown lines like this :

      INFO [STDOUT] 00 00 0d 2f 65 72 72 6f 72 34 30 34 2e 6a 73 70 | .../error404.jsp
      INFO [STDOUT] 00 00 0c 38 30 2e 39 37 2e 32 31 36 2e 34 39 00 | ...80.97.216.49.
      INFO [STDOUT] 12 34 01 be 02 02 00 08 48 54 54 50 2f 31 2e 30 | .4.?....HTTP/1.0
      INFO [STDOUT] ff ff 00 14 77 77 77 2e 74 6f 67 65 74 68 65 72 | ??..www.together
      INFO [STDOUT] 00 00 0d 2f 65 72 72 6f 72 34 30 34 2e 6a 73 70 | .../error404.jsp
      INFO [STDOUT] 73 6f 66 74 2e 63 6f 6d 00 00 50 00 00 0d a0 01 | soft.com..P...?.
      INFO [STDOUT] 12 34 01 be 02 02 00 08 48 54 54 50 2f 31 2e 30 | .4.?....HTTP/1.0
      INFO [STDOUT] 00 00 0c 38 30 2e 39 37 2e 32 31 36 2e 34 39 00 | ...80.97.216.49.
      INFO [STDOUT] 00 0b 61 75 74 68 2f 73 69 63 69 6c 79 00 00 0d | ..auth/sicily...
      INFO [STDOUT] 00 00 0d 2f 65 72 72 6f 72 34 30 34 2e 6a 73 70 | .../error404.jsp
      INFO [STDOUT] ff ff 00 14 77 77 77 2e 74 6f 67 65 74 68 65 72 | ??..www.together
      INFO [STDOUT] 63 61 63 68 65 2d 63 6f 6e 74 72 6f 6c 00 00 0e | cache-control...
      INFO [STDOUT] 00 00 0c 38 30 2e 39 37 2e 32 31 36 2e 34 39 00 | ...80.97.216.49.
      INFO [STDOUT] 73 6f 66 74 2e 63 6f 6d 00 00 50 00 00 0d a0 01 | soft.com..P...?.
      INFO [STDOUT] 6d 61 78 2d 61 67 65 3d 32 35 39 32 30 30 00 a0 | max-age=259200.?
      INFO [STDOUT] ff ff 00 14 77 77 77 2e 74 6f 67 65 74 68 65 72 | ??..www.together
      INFO [STDOUT] 00 0b 61 75 74 68 2f 73 69 63 69 6c 79 00 00 0d | ..auth/sicily...
      INFO [STDOUT] 06 00 0a 6b 65 65 70 2d 61 6c 69 76 65 00 a0 08 | ...keep-alive.?.
      INFO [STDOUT] 73 6f 66 74 2e 63 6f 6d 00 00 50 00 00 0d a0 01 | soft.com..P...?.


      How can I eliminate this in Jboss console screen

      Thanks

        • 1. Re: How to eliminate mod_jk debug in console
          dcartier

          Hi Harry,

          You can add a limit into the log4j.xml file for the JK connector. You would normally place this below the 'Limit Categories' label.

          Example:

          <category name="org.apache.jk">
          <priority value="WARN"/>
          </category>


          This will make it much less noisy.

          Dennis