Changes between Version 239 and Version 240 of UserGuidelines/GIS/Data
- Timestamp:
- 06/13/16 14:35:05 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserGuidelines/GIS/Data
v239 v240 161 161 162 162 [wiki:InstallationGuidelinesGISDataLinux#PostGIS PostGIS] is recommended as the main data store. 163 * Allow Read access to !GeoServer: 163 * Create a dedicated DB for GIS data: 164 {{{ 165 su postgres 166 psql 167 CREATE USER gis WITH PASSWORD 'GIS'; 168 \q 169 createdb -O gis gis 170 psql 171 \c gis 172 CREATE EXTENSION postgis; 173 GRANT CONNECT ON DATABASE gis to geoserver; 174 GRANT SELECT ON gis_location to geoserver; 175 GRANT SELECT ON geometry_columns to geoserver; 176 GRANT SELECT ON spatial_ref_sys to geoserver; 177 }}} 178 179 * Allow Read access to !GeoServer to the Sahana DB: 164 180 {{{ 165 181 su postgres