Web archive¶
GeoServer is packaged as a standalone servlet for use with existing application servers such as Apache Tomcat and Jetty.
Note
GeoServer has been mostly tested using Tomcat, and so is the recommended application server. Other application servers have been known to work, but are not guaranteed.
Installation¶
Make sure you have a Java Runtime Environment (JRE) installed on your system. GeoServer requires a Java 7 environment. The Oracle JRE is preferred, but OpenJDK has been known to work adequately. You can download JRE 7 from Oracle.
Note
Java 8 is not currently supported.
Note
For more information about Java and GeoServer, please see the section on Java Considerations.
Navigate to the GeoServer Download page.
Select Web Archive on the download page.
Download and unpack the archive.
Deploy the web archive as you would normally. Often, all that is necessary is to copy the
geoserver.war
file to the application server’swebapps
directory, and the application will be deployed.Note
A restart of your application server may be necessary.
Running¶
Use your container application’s method of starting and stopping webapps to run GeoServer.
To access the Web Administration Interface, open a browser and navigate to http://SERVER/geoserver
. For example, with Tomcat running on port 8080 on localhost, the URL would be http://localhost:8080/geoserver
.
Uninstallation¶
- Stop the container application.
- Remove the GeoServer webapp from the container application’s
webapps
directory. This will usually include thegeoserver.war
file as well as ageoserver
directory.