Changes between Version 63 and Version 64 of InstallationGuidelines/PostgreSQL


Ignore:
Timestamp:
06/05/12 12:33:42 (12 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/PostgreSQL

    v63 v64  
    276276locale-gen
    277277# Rebuild the PostgreSQL cluster
    278 pg_createcluster 8.4 utf8_cluster
     278pg_dropcluster 8.4 main
     279pg_createcluster --locale=en_US.UTF-8 8.4 main
     280/etc/init.d/postgresql restart
     281# Recreate 'sahana' user
     282echo "CREATE USER sahana WITH PASSWORD 'mypassword';" > /tmp/pgpass.sql
     283su -c - postgres "psql -q -d template1 -f /tmp/pgpass.sql"
     284rm -f /tmp/pgpass.sql
    279285}}}
    280286=== Performance ===