2 Replies Latest reply on Sep 12, 2003 3:18 PM by origen

    Jboss 3.2.1 w/tomcat 4.1.24 and Apache 2.0.47

    origen

      I've searched on both Google.com/linux, google, and google/bsd as well as on this forum for some information. What I came with are different 'tutorials' explaining how to get this set up.

      This is what I have done.

      1. Installed and ran successfully - Apache 2.0.47
      2. Installed and ran JMX-Console successfully - JBoss 3.2.1 w/tomcat 4.1.24
      3. Installed /etc/httpd/modules/mod_jk-2.0.43.so and made the following entry into my httpd.conf file:
      LoadModule jk_module modules/mod_jk-2.0.43.so
      4. Modified /opt/jboss/server/all/deploy/jbossweb-tomcat.sar/META-INF/jboss-service.xml
      and added the follwing lines


      config options...



      as well as


      config options...



      then...

      I added the following to /opt/jboss/server/all/conf/workers.properties

      # BEGIN workers.properties
      worker.list=ajp13
      worker.ajp13.port=8009
      worker.ajp13.host=localhost
      worker.ajp13.type=ajp13
      # END workers.properties


      And created /etc/htttpd/conf/mod_jk.conf

      LoadModule jk_module libexec/mod_jk-1.3-noeapi.so
      JkWorkersFile /opt/jboss/server/all/conf/workers.properties
      JkLogFile /etc/httpd/logs/mod_jk.log
      JkLogLevel info
      JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
      JkMount /lisaWsp/* ajp13
      JkMount /homero/* ajp13
      JkMount /*.jsp ajp13
      JkMount /servlet/* ajp13


      And finally, I added this to httpd.conf

      Include /etc/httpd/conf/mod_jk.conf

      I then started up jboss via

      /opt/jboss/bin/jboss_init_redhat.sh start

      and apache via /etc/httpd/apachect1 start

      I can access dirs on apache's document root, but when I try

      http://localhost/jmx-console/index.jsp
      I get 500 (Internal server) error
      or
      http://localhost:8080/jmx-console/index.jsp
      I get no response at all


      Has anyone successfully installed an apache jboss w/ tomcat .

      I'm on a Red Hat 8.0 system