Ticket #19090: ticket_19090.diff

File ticket_19090.diff, 915 bytes (added by Lebedev Ilya, 11 years ago)
  • docs/ref/databases.txt

    diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
    index 3a52f83..a0849e9 100644
    a b aggregate with a database backend that falls within the affected release range.  
    3333.. _known to be faulty: http://archives.postgresql.org/pgsql-bugs/2007-07/msg00046.php
    3434.. _Release 8.2.5: http://www.postgresql.org/docs/devel/static/release-8-2-5.html
    3535
     36Notes on basic PostgreSQL's configuration
     37-----------------------------------------
     38
     39By default (empty HOST), the connection to the database is done through UNIX domain sockets ('local' lines in pg_hba.conf). If you want to connect through TCP sockets, set HOST to 'localhost' or '127.0.0.1' ('host' lines in pg_hba.conf). On Windows, you should always define HOST, as UNIX domain sockets are not available.
     40
    3641Optimizing PostgreSQL's configuration
    3742-------------------------------------
    3843
Back to Top