Unable to do work with kiosks-workbench-6.2 on tomcat 7

I need to use the functions provided by the drools working tool, for example, a managed rule editor, but it really upsets its deployment on tomcat.

Having taken the following steps with the introduction of README.txt, I can see "Server Start at 45906ms" at the end of the CMD popup. But the network is completely empty as I visit http: // localhost: 8080 / . Any ideas?

  • Install Bitronix transaction manager in your tomcat 7

I load the following jars separately and put them in TOMCAT_HOME / lib.

btm-2.1.4.jar
btm-tomcat55-lifecycle-2.1.4.jar
h2-1.3.176.jar
jta-1.1.jar
slf4j-api-1.7.5.jar
slf4j-jdk14-1.7.2.jar
  1. Creating configuration files inside TOMCAT_HOME / conf

Create the btm-config.properties and resources.properties properties and put the lines in the README.txt file respectively.

  1. btm.root, bitronix, JBoss .

setenv.bat TOMCAT_HOME/bin (. ):

set CATALINA_OPTS=-Xms512M -Xmx1024M -XX:MaxPermSize=512m -Dbtm.root="%CATALINA_HOME%" -Dbitronix.tm.configuration="%CATALINA_HOME%"/conf/btm-config.properties -Djbpm.tsr.jndi.lookup=java:comp/env/TransactionSynchronizationRegistry -Djava.security.auth.login.config="%CATALINA_HOME%"/webapps/kie-drools-wb-distribution-wars-6.2.0.Final-tomcat7/WEB-INF/classes/login.config -Dorg.jboss.logging.provider=jdk
  1. JEE- kie-wb tomcat ( , tomcat-users.xml)

2 ~ 2. README.txt( JAR, JACC JAR, "slf4j-api" JAR ( , 1?) TOMCAT_HOME/lib), kie-tomcat-integration-6.2.0.Final.jar, javax.security.jacc-api-1.5.jar TOMCAT_HOME/lib.

2d. .

2. TOMCAT_HOME/conf/tomcat-users.xml :

...
<role rolename="admin"/>
<user username="drools_tomcat" password="111" roles="admin"/>
</tomcat-users>

, . , ,

kie workbench deploy war not working (tomcat),

drools 6.0.1 workbench tomcat7.0,

kie-drools-wb 6.2.0 tomcat7?,

kie-drools-wb Tomcat. , , .

+4
1

!

BTW, TOMCAT_HOME/conf/tomcat-users.xml, (. -, ), user1 ( user1, ).

<role rolename="admin"/> <!-- Tomcat Admin role -->
<role rolename="analyst"/> <!-- Kie Workbench Analyst role. -->
<role rolename="kie-server"/> <!-- Kie Drools Execution Server role. Needed to make REST Rules execution request -->
<user username="admin" password="admin" roles="manager-gui,manager-script" /> <!-- Tomcat Admin user -->
<user username="user1" password="user1" roles="admin, kie-server" />
+3

All Articles