From ee94ea36de7c6283df7294fe43a8fc22ff56d91d Mon Sep 17 00:00:00 2001 From: chriskl Date: Fri, 15 Aug 2003 09:05:09 +0000 Subject: [PATCH] update to FAQ suggested by dylan --- FAQ | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/FAQ b/FAQ index 4033eb00..eaa5b05f 100644 --- a/FAQ +++ b/FAQ @@ -19,6 +19,18 @@ A: Check the PostgreSQL log on your server, it will give the exact reason why the login is failing. Edit the pg_hba.conf file in your PostgreSQL data dir and make sure you have enabled access to the server properly. + Another likely reason is that you have not started your PostgreSQL with + TCP/IP sockets enabled. To enable this, edit your postgresql.conf file + and change this line: + + #tcpip_socket = false + + to: + + tcpip_socket = true + + and then restart PostgreSQL. + Q: I can use any password to log in! A: PostgreSQL, by default, runs in trust mode. That means that it doesn't -- 2.39.5