Skip to content

Instantly share code, notes, and snippets.

@kehh
Last active August 29, 2015 14:13
Show Gist options
  • Save kehh/f2c21e6088c8b98a8299 to your computer and use it in GitHub Desktop.
Save kehh/f2c21e6088c8b98a8299 to your computer and use it in GitHub Desktop.
Installation script for opengeo suite installation

#Install Opengeo Instructions from http://suite.opengeo.org/docs/latest/intro/installation/ubuntu/install.html#intro-installation-ubuntu-install

sudo su -
wget -qO- http://apt.boundlessgeo.com/gpg.key | apt-key add -
echo "deb http://apt.boundlessgeo.com/suite/v45/ubuntu/ trusty main" > /etc/apt/sources.list.d/opengeo.list
apt-get update
apt-get install opengeo-server opengeo-jai opengeo-webapp-sdk opengeo-recipes

##Install Opengeo Plugins You need to find the plugins that correspond to your version of geoserver. Boundless maintain a number of plugins at http://ares.boundlessgeo.com/geoserver/release/2.6.1/plugins/

mkdir -p /data/geoserver/plugins
cd /data/geoserver/plugins

###Mysql Connector

wget http://ares.boundlessgeo.com/geoserver/release/2.6.1/plugins/geoserver-2.6.1-mysql-plugin.zip

###Printing Plugin

wget http://ares.boundlessgeo.com/geoserver/release/2.6.1/plugins/geoserver-2.6.1-printing-plugin.zip

##Deploy Plugins

cd /usr/share/opengeo/geoserver/WEB-INF/lib
ln -s /data/geoserver/plugins/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment