[Geoserver-users] Deploying Geoserver in Geronimo?

Hello,

I'm trying to deploy geoserver 1.7 in gernonimo
(geronimo-tomcat6-javaee5-2.1-bin). The first error I get while
deploying is: "cannot find web-inf/geronimo-web.xml

Is there any pre-build geronimo-web.xml to download? I've never used
geronimo before, just Tomcat. And since geronimo uses tomcat, I
thought it just works.

Regards,
Sebastian

Sebastian Mueller wrote:

Hello,

I'm trying to deploy geoserver 1.7 in gernonimo
(geronimo-tomcat6-javaee5-2.1-bin). The first error I get while
deploying is: "cannot find web-inf/geronimo-web.xml

Is there any pre-build geronimo-web.xml to download? I've never used
geronimo before, just Tomcat. And since geronimo uses tomcat, I
thought it just works.

Regards,
Sebastian

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Justin Deoliveira
OpenGeo - http://opengeo.org
Enterprise support for open source geospatial.

Hi Sebastian,

I myself have never heard of anyone deploying GeoServer with geronimo. From a quick look at the documentation is appears you must first create a "deployment plan". I downloaded Geronimo to try it out and did the following.

1. Unpacked geoserver.war into <home>/geoserver
2. Created <home>/geoserver/WEB-INF/geronimo-web.xml:

   <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-2.0.1&quot;&gt;
     <environment>
         <moduleId>
             <groupId>org.geoserver</groupId>
             <artifactId>geoserver</artifactId>
             <version>1.7.1</version>
             <type>war</type>
         </moduleId>
     </environment>
     <context-root>/geoserver</context-root>
</web-app>

3. Ran the geronimo deploy script:

   sh deploy.sh --user system --password manager deploy --inPlace <home>/geoserver/

Unfortunately that is as far as I got. I got an error while deploying and did not dig any deeper.

Hope that helps. If you figure out I would be interested in a setup that works.

Thanks,

-Justin

Sebastian Mueller wrote:

Hello,

I'm trying to deploy geoserver 1.7 in gernonimo
(geronimo-tomcat6-javaee5-2.1-bin). The first error I get while
deploying is: "cannot find web-inf/geronimo-web.xml

Is there any pre-build geronimo-web.xml to download? I've never used
geronimo before, just Tomcat. And since geronimo uses tomcat, I
thought it just works.

Regards,
Sebastian

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users

--
Justin Deoliveira
OpenGeo - http://opengeo.org
Enterprise support for open source geospatial.