Last active
December 15, 2015 04:59
-
-
Save stephen-masters/5205287 to your computer and use it in GitHub Desktop.
Setting up Drools Guvnor on WebSphere Application Server Liberty Profile 8.5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run from a location where you want to download the application. | |
mkdir ~/downloads ; cd ~/downloads | |
curl -O -L http://download.jboss.org/drools/release/5.3.0.Final/guvnor-distribution-5.3.0.Final.zip | |
unzip guvnor-distribution-5.3.0.Final.zip | |
# Explode the Guvnor .war and copy to the WAS "apps" directory | |
unzip guvnor-distribution-5.3.0.Final/binaries/guvnor-5.3.0.Final-tomcat-6.0.war -d guvnor | |
cp guvnor /usr/share/was/wlp/usr/servers/guvnor/apps/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<server description="Guvnor server"> | |
<featureManager> | |
<feature>jsp-2.2</feature> | |
<feature>servlet-3.0</feature> | |
</featureManager> | |
<httpEndpoint id="localhostHttpEndpoint" | |
host="localhost" | |
httpPort="9080" | |
httpsPort="9443" /> | |
<httpEndpoint id="ipHttpEndpoint" | |
host="192.168.36.133" | |
httpPort="9080" | |
httpsPort="9443" /> | |
<application id="guvnor" location="guvnor" name="guvnor" type="war" /> | |
</server> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment