Changes between Version 10 and Version 11 of GPSphotos
- Timestamp:
- 2016-09-26T23:16:37+02:00 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GPSphotos
v10 v11 40 40 systemctl start postgresql-9.5 41 41 }}} 42 Make sure the path is updated by creating /var/lib/pgsql/.pgsql_profile with the content: 43 {{{ 44 export PATH=/usr/pgsql-9.5/bin:$PATH 45 }}} 42 46 43 47 Create the DB schema: … … 45 49 sudo -i postgres 46 50 createdb mapserver 47 51 createuser mapserver 48 52 psql mapserver 49 > create user mapserver50 53 > alter user mapserver with password <password> 51 54