General Information

 

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

Thanks for the catch! Fixed.

Thanks for the catch! Fixed.