문제

Is there any simple tutorial for installing geoserver with jetty on Ubuntu ?

도움이 되었습니까?

해결책

sudo apt-get update

sudo apt-get install unzip openjdk-6-jre

echo "export JAVA_HOME=/usr/lib/jvm/java-6-openjdk-amd64" >> ~/.bashrc

source ~/.bashrc

wget -c http://sourceforge.net/projects/geoserver/files/GeoServer/2.3.5/geoserver-2.3.5-bin.zip/download

unzip -a geoserver-2.3.5-bin.zip

cd geoserver-2.3.5/bin

./startup.sh &

In web browser visit http://localhost:8080/geoserver/

다른 팁

You can use this docker container https://hub.docker.com/r/winsent/geoserver/ it based on Oracle Java 7 with JAI 1.1.3, ImageIO 1.1, GDAL 1.10.1 and extensions.

Or see Dockerfile how to install https://hub.docker.com/r/winsent/geoserver/~/dockerfile/

You can use abhijeetkoli/geoserver image if you wish to give it a try.

Source and build scripts are here

Docker

docker run -d --name geoserver abhijeetkoli/geoserver

Kubernetes

kubectl --kubeconfig ~/.kube/gis.config apply  \
    -f ./scripts/kubernetes/gis/geoserver-service.yaml \
    -f ./scripts/kubernetes/gis/geoserver-deployment.yaml
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top