0 Replies Latest reply on Jan 10, 2006 4:32 AM by willng

    how to config minimal server with web deployer only at JBoss

    willng

      when I use jboss-3.2.0, I can follow the below step to config. a minimal server that can run jetty and http invoker only
      > edit "jboss-3.2.0/bin/run.bat"
      From : set ARGS=3D
      To : set ARGS=3D-c minimal

      > move "jboss-3.2.0/server/default/deploy/http-invoker.sar" &
      "jboss-3.2.0/server/default/deploy/jbossweb-jetty.sar"

      to "jboss-3.2.0/server/minimal/deploy/http-invoker.sar" &
      "jboss-3.2.0/server/minimal/deploy/jbossweb-jetty.sar"

      > copy "jboss-3.2.0/server/default/lib/*"

      to "jboss-3.2.0/server/minimal/lib"

      > edit =
      "jboss-3.2.0/server/minimal/deploy/http_invoker.sar/invoker.war/WEB-INF/j=
      boss_web.xml"
      Remark <security-domain> tab
      i.e. <!--
      <security-domain>.....</security-domain>
      -->

      BECAUSE I don't want to load those ejb & jmx stuffs.

      Now I upgrade Jboss to jboss-4.0.3SP1 and follow the above step just in diff. with copy jbossweb-tomcat55.sar instead of jbossweb-jetty.sar

      and I start minimal server with command "run -c minimal"
      the error as below

      1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, Server Socket
      Factory=org.jboss.net.sockets.DefaultSocketFactory@ad093076
      17:30:10,890 ERROR [URLDeploymentScanner] Incomplete Deployment listing:

      --- Packages waiting for a deployer ---
      org.jboss.deployment.DeploymentInfo@558555fd { url=file:/D:/jboss-4.0.3SP1/serve
      r/minimal/deploy/TestWeb.war/ }
      deployer: null
      status: null
      state: INIT_WAITING_DEPLOYER
      watch: file:/D:/jboss-4.0.3SP1/server/minimal/deploy/TestWeb.war/
      altDD: null
      lastDeployed: 1136885410875
      lastModified: 1136884014734
      mbeans:

      --- Incompletely deployed packages ---
      org.jboss.deployment.DeploymentInfo@558555fd { url=file:/D:/jboss-4.0.3SP1/serve
      r/minimal/deploy/TestWeb.war/ }
      deployer: null
      status: null
      state: INIT_WAITING_DEPLOYER
      watch: file:/D:/jboss-4.0.3SP1/server/minimal/deploy/TestWeb.war/
      altDD: null
      lastDeployed: 1136885410875
      lastModified: 1136884014734
      mbeans:


      --- MBeans waiting for other MBeans ---
      ObjectName: jboss.web:service=WebServer
      State: CONFIGURED
      I Depend On:
      jboss.security:service=JaasSecurityManager
      jboss:service=TransactionManager

      --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
      ObjectName: jboss.security:service=JaasSecurityManager
      State: NOTYETINSTALLED
      Depends On Me:
      jboss.web:service=WebServer


      17:30:11,000 INFO [Server] JBoss (MX MicroKernel) [4.0.3SP1 (build: CVSTag=JBos
      s_4_0_3_SP1 date=200510231054)] Started in 3s:625ms

      Any one can tell me how to solve this?
      thanks in advance