Hallo,
Postgres musst du erst mal ein wenig als Root anpassen, damit es läuft. 
Editiere als Root mit deinem Lieblingseditor die Datei /var/lib/pgsql/data/pg_hba.conf
Sollte danach so aussehen:
# TYPE  DATABASE    USER        IP-ADDRESS        IP-MASK           METHOD
local   all         all                                             trust
# IPv4-style local connections:
host    all         all         127.0.0.1         255.255.255.255   trust
Per Defaulteinstellung ist der Zugriff gesperrt.
Auch ist eine Änderung im gleichen Verzeichnis in der Datei postgresql.conf
vorzunehmen.
CONNECTIONS AND AUTHENTICATION
#---------------------------------------------------------------------------
# - Connection Settings -
tcpip_socket = true
max_connections = 100
   # note: increasing max_connections costs about 500 bytes of shared
   # memory per connection slot, in addition to costs from shared_buffers
        # and max_locks_per_transaction.
#superuser_reserved_connections = 2
port = 5432
Anschließend Postgres neu starten.
Hoffe dies hilft Dir erstmal weiter.