You have critically misunderstood how PostgreSQL works.
app_db.sqlnot a database, this is a database dump. A sequence of text commands that describe data in a database that can be played to create a database.
Microsoft Access .dbx SQLite3, , , . PostgreSQL - / PostgreSQL, , /var/lib/pgsql, .
, psql, :
$ createdb mydb
$ psql -f app_db.sql mydb
, , , . , mydb , , pg_hba.conf, .
unix bob :
$ sudo -u postgres createuser bob
$ sudo -u postgres createdb -O bob mydb
$ psql -f dpp_db.sql -1 -v ON_ERROR_STOP=1 mydb
PostgreSQL .