On 08/23/2010 09:16 PM, PMC OS wrote: > And now there is the problem, that postgresql refuse ANY connections > not coming from local and fromlibpam/nss, which mean, if it refuse I > can not do anything.
PostgreSQL doesn't listen on TCP by default. You need to start it with the command line arguments: -c listen_addresses='*' On a Red Hat based system, you'd do that by editing /etc/sysconfig/pgsql/postgresql so that it contained one line: PGOPTS="-c listen_addresses='*'" and then restart the PostgreSQL server. You're probably running Debian or Ubuntu since you have a package called "apache2" (Apache is the name of the organization, not the http server, silly Debian). > Maybe I should subscribe to the postgresql list Or possibly to your distribution's list. Either may be able to help you with PostgreSQL. ------------------------------------------------------------------------------ Sell apps to millions through the Intel(R) Atom(Tm) Developer Program Be part of this innovative community and reach millions of netbook users worldwide. Take advantage of special opportunities to increase revenue and speed time-to-market. Join now, and jumpstart your future. http://p.sf.net/sfu/intel-atom-d2d _______________________________________________ courier-users mailing list [email protected] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
