Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.

Bug 1140907

Summary: business central fails to load
Product: [Retired] JBoss BPMS Platform 6 Reporter: Prabakar <psingara>
Component: Business CentralAssignee: manstis
Status: CLOSED NOTABUG QA Contact: Radovan Synek <rsynek>
Severity: urgent Docs Contact:
Priority: high    
Version: 6.0.2CC: kverlaen, mwinkler, nobody, psingara
Target Milestone: ---   
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-09-17 14:34:54 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
server config files
none
server log
none
as requested server 2 logs
none
deployment guide none

Description Prabakar 2014-09-12 02:24:57 UTC
Description of problem:
Business central (BPM6) deployed in eap-6.1.1 fails to load the log in page


Version-Release number of selected component (if applicable):
BPM Suite, 6.0.2
EAP-6.1.1
openjdk-1.7

How reproducible:
follow the below link and deploy as instructed
http://documentation-devel.engineering.redhat.com/site/documentation/en-US/Red_Hat_JBoss_BPM_Suite/6.0/html-single/Installation_Guide/index.html#Installing_BPM_Suite_in_the_Domain_Mode

Steps to Reproduce:
1.
2.
3.

Actual results:
not loading the log in page
http://localhost:8080/business-central

Expected results:
load the login page

Additional info:

Comment 1 Prabakar 2014-09-12 02:25:53 UTC
this requirement is requested by customer,

Comment 3 Marek Winkler 2014-09-12 08:07:17 UTC
Hi, could you please share EAP configuration and log files? Just to confirm, you are running BPM Suite on EAP in domain mode, right? 

Thanks!

Comment 4 Prabakar 2014-09-12 15:11:55 UTC
Created attachment 936993 [details]
server config files

Comment 5 Prabakar 2014-09-12 15:17:53 UTC
Created attachment 936996 [details]
server log

I am using single physical machine to do this task

Comment 6 Radovan Synek 2014-09-17 08:05:09 UTC
Prabakar,

thanks for uploading configuration and server log. I am still missing server log from node two - where is likely the error message I was looking for.

If you take a look at hosts.xml, there are properties:
<property name="org.uberfire.nio.git.daemon.host" value="10.10.10.10" boot-time="false"/>
and
<property name="org.uberfire.nio.git.ssh.host" value="10.10.10.10" boot-time="false"/>
defined on both nodes.

IP address 10.10.10.10 mentioned in Installation Guide is just an example, if you don't specify these properties, git and ssh daemon will bind to localhost by default.

With your configuration (using IP 10.10.10.10) I got "java.net.BindException: Cannot assign requested address" in server log on node two. This error prevented proper deployment of Business Central. After removing these properties, I was able to deploy and access Business Central on both nodes.

In case 10.10.10.10 is really your IP address, your configuration should work, of course.

Comment 7 Prabakar 2014-09-17 12:55:11 UTC
Created attachment 938464 [details]
as requested server 2 logs

Comment 8 Prabakar 2014-09-17 12:55:53 UTC
Created attachment 938467 [details]
deployment guide

Comment 9 Prabakar 2014-09-17 14:17:14 UTC
I fixed those issues...may be I want to share the fixes I did to make this works..
1. I wrongly pakage the business central war file..
- business-central.war\
business-central.war\
WEB-INF\
META-INF\

I fixed the above by create a proper war file structure
business-central.war\
WEB-INF\
META-INF\
2. As you mentioned in your comment..commented out the following system properties..
        <!--property name="org.uberfire.nio.git.daemon.host" value="10.10.10.10" boot-time="false"/-->
        <!--property name="org.uberfire.nio.git.ssh.host" value="10.10.10.10"/-->

Now works fine....thanks all your support...

Comment 10 Radovan Synek 2014-09-17 14:34:54 UTC
Good to hear,

closing this issue.

(In reply to Prabakar from comment #9)