The /var/lib/pgsql/9.3/data/postgresql.conf file controls the behavior of the PostgreSQL database.
# ----------------------------- # PostgreSQL configuration file # ----------------------------- # <snip> #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------ # - Connection Settings - #listen_addresses = 'localhost' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost', '*' = all # (change requires restart) listen_addresses = '127.0.0.1,<database_host_ip>' # what IP address(es) to listen on; #port = 5432 # (change requires restart) <snip>
This file is in /var/lib/pgsql/9.3/data.
This copy of the file is in /var/lib/pgsql/9.3/reports. Note the different port number.
# ----------------------------- # PostgreSQL configuration file # ----------------------------- # <snip> #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------ # - Connection Settings - #listen_addresses = 'localhost' # what IP address(es) to listen on; # comma-separated list of addresses; # defaults to 'localhost', '*' = all # (change requires restart) listen_addresses = '127.0.0.1,<database_host_ip>' # what IP address(es) to listen on; #port = 5632 # (change requires restart) <snip>