Ambos @CraigRinger (não sobre o script de inicialização, no entanto) e @gabe estão certos. Você deve ter lido o pacote README
e precisa initdb
. Do README:
If you are installing PostgreSQL for the first time, you have to create a default database first. In the following example we install a database in /var/postgresql/data with a dba account 'postgres' and md5 authentication. We will be prompted for a password to protect the dba account:
# su - _postgresql $ mkdir /var/postgresql/data $ initdb -D /var/postgresql/data -U postgres -A md5 -W
Please note that by default the cluster's encoding will be SQL_ASCII. If you want to have an another default encoding, use the option -E with initdb:
$ initdb -D /var/postgresql/data -U postgres -E UTF8 -A md5 -W
Arquivos README para todos os pacotes instalados estão no seguinte diretório: /usr/local/share/doc/pkg-readmes
.