I am using docker compose image to connect jbpm with postgresql. I have done the authentication of business central through database users by changing login module in security domain section. After successful login of database user, using url http://localhost:8080/business-central/kie-wb.jsp , i am deploying project to execution server , but remote server is not available there . See below image :
When i check for logs it shows some warnings and errors as below : Kie Server points to non Web Socket controller 'http://localhost:8080/business-central/rest/controller', using default REST mechanism
Additionally it shows error like, Error while creating container for Project.Cannot find Kie Module.
What is causing the remote server not available here ? Which step i missed could anyone please tell.
Thanks in Advance !!
Since you are configuring user using DatabaseServerLoginModule, you will have to configure "kie-server" user and password in standalone.xml.
Try adding below properties in standalone.xml and map with the required user.
<property name="org.kie.server.user" value="newUser"/>
<property name="org.kie.server.pwd" value="passwd"/>
<property name="org.kie.server.controller.user" value="newUser"/>
<property name="org.kie.server.controller.pwd" value="passwd"/>
Also, remove key-store related properties if it's added.