Bạn phải tạo người dùng và cơ sở dữ liệu tương ứng theo cách thủ công như sau:
trong shell:psql
sau đó:
create user alphauser with password 'alphapassword';
create database alpha_database owner alphauser;
alter user alphauser superuser createrole createdb replication;
\q
đừng quên dấu chấm phẩy.