geoserver on JBoss¶
This tutorial documents how to install various versions of geoserver onto various versions of JBoss.
geoserver 2.7.0 on JBoss AS 5.1¶
To install geoserver onto JBoss AS 5.1, the following is required:
Create the file
jboss-classloading.xml
with the following content then copy it into theWEB-INF
directory in the geoserver.war:
<classloading xmlns="urn:jboss:classloading:1.0"
name="geoserver.war"
domain="GeoServerDomain">
</classloading>
Extract the
hsqldb-2.2.8.jar
file from theWEB-INF/lib
directory from the geoserver.war and copy it ashsqldb.jar
to thecommon/lib
directory in the JBoss deployment.Add the following text to the
WEB-INF/web.xml
file in the geoserver.war so that JBoss logging does not end up in the geoserver.log:
<context-param>
<param-name>RELINQUISH_LOG4J_CONTROL</param-name>
<param-value>true</param-value>
</context-param>