1 Reply Latest reply on Jun 27, 2013 7:29 AM by aemdtuc

    http://localhost:8080/jbpm-console not working

    pushpinderravi

      Hi All,

       

      I am new to jBPM and have limited knowledge about it.

       

      I recently downloaded and installed it on the Windows Server 2008 R2, by following instructions on http://docs.jboss.org/jbpm/v5.1/userguide/ch03.html#d0e402. But when I try to visit http://localhost:8080/jbpm-console, it just stays there. Following is the result, when I execute the start.demo command.

       

      c:\jbpm-installer>ant start.demo
      Buildfile: c:\jbpm-installer\build.xml

      download.db.driver.check:
           [echo] Checking if db driver jar has been downloaded ....//db/driver/h2.jar


      download.db.driver:

      start.h2.check:
           [echo] Checking if h2 db should be started ...

      start.h2:

      start.jboss:

      check.jboss.version:

      start.jboss5:

      check.jboss.version:

      start.jboss7:

      start.eclipse:

      start.demo:

      BUILD SUCCESSFUL
      Total time: 3 seconds

       

       

      Also, I can't access any webpage of the server, from my local machine. I tried disabling the firewall completely, and using the IP address but nothing worked.

       

      Can anybody please help?

       

      Regards,

      Pushpinder

        • 1. Re: http://localhost:8080/jbpm-console not working
          aemdtuc

          so from what I understood you're running jBPM in a server and trying to load the URL from your machine (correct me if I'm wrong).

          have you configured jboss to allow remote access?!

          go to the standalone.xml inside jboss and set as the following:

           

          <interface name="management">

                <inet-address value="${jboss.bind.address.management:0.0.0.0}"/>

          </interface>

          <interface name="public">

                <inet-address value="${jboss.bind.address:0.0.0.0}"/>

          </interface>

           

          Hope it helps