Changes between Version 7 and Version 8 of GPSphotos
- Timestamp:
- 09/26/16 22:40:51 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GPSphotos
v7 v8 12 12 * Install postgresql server and postgis if Postgres is the backend DB: 13 13 {{{ 14 yum install postgresql-server postg is14 yum install postgresql-server postgresql-contrib postgis 15 15 }}} 16 16 … … 26 26 == PostGIS == 27 27 28 As root init the DB if needed: 29 {{{ 30 postgresql-setup initdb 31 systemctl start postgresql 32 systemctl enable postgresql 33 }}} 34 35 Create the DB schema: 36 {{{ 28 37 sudo -i postgres 29 createdb mapserver --no-superuser --no-createdb38 createdb mapserver 30 39 31 40 psql mapserver 41 > create user mapserver 32 42 > alter user mapserver with password <password> 33 43 … … 35 45 psql -f /usr/share/postgresql/9.1/contrib/postgis-1.5/spatial_ref_sys.sql -d mapserver 36 46 psql -f /usr/share/postgresql/9.1/contrib/postgis_comments.sql -d mapserver 37 38 47 }}} 39 48 == Useful tools == 40 49 print detailed exif information of image: