Changes between Version 4 and Version 5 of InstallationGuidelines/PostgreSQL
- Timestamp:
- 09/18/10 12:12:42 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/PostgreSQL
v4 v5 1 1 == Installation on PostgreSQL == 2 Replacing the simple SQLite database with PostgreSQL allows greater scalability & the ~~possibility~~ essential need of using PostGIS for spatial storage.2 Replacing the simple SQLite database with [http://www.postgresql.org PostgreSQL] allows greater scalability & the possibility of [wiki:UserGuidelinesGISData#PostgreSQLmanagement using PostGIS for spatial storage]. 3 3 4 4 Suggest to use connection pools to reuse connections: … … 16 16 }}} 17 17 18 {{{ 19 vim /etc/postgresql/8.3/main/postgresql.conf 20 track_counts = on 21 autovacuum = on 22 }}} 23 24 Also see: 25 * [wiki:InstallationGuidelinesGISDataLinux#PostGIS] 26 * [wiki:UserGuidelinesGISData#PostgreSQLmanagement] 27 28 {{{ 29 su postgres 30 createuser -s -P sahana 31 32 createdb -O sahana -E UTF8 sahana 33 }}} 34 18 35 A set of docs for setting up on Ubuntu: http://www.web2pyslices.com/main/slices/take_slice/14 19 36