General Information

 

slazar's picture
Offline
Joined: 05/18/2010
Installing the database

On the Installing the Database topic, under Command Line Examples there is an error. The first two commands are squished together. It is very confusing to the first time installer.

The commands:
psql -U postgres -f init.sql template1 createdb -U admin production
pg_restore -U admin -d production quickstart.backup -v

should be:
psql -U postgres -f init.sql template1
createdb -U admin production
pg_restore -U admin -d production quickstart.backup -v

ned
ned's picture
Offline
Joined: 10/20/2008
Thanks for the catch! Fixed.

Thanks for the catch! Fixed.