On 9 Nov, 2009, at 14:54 , Nerses wrote: > On Nov 9, 5:25 pm, Andrea Tomasini <[email protected]> > wrote: > Hi Andrea, Hi Narses :-)
> Yes I have created all the db and the user there, when I do psql > agilo_db > and then in psql console I wrote > > select * from pg_shadow; > > I got the user and md5 encrypted password so I assume the user owned > the DB isn't it? Right, you might have problems in the md5 exchange, if that is the problem, can you try to replace the line below as follows? >>> my pg_hba.conf file looks like this >> >>> # Database administrative login by UNIX sockets >>> local all postgres ident sameuser >> >>> # TYPE DATABASE USER CIDR-ADDRESS METHOD >> >>> # "local" is for Unix domain socket connections only >>> local all all ident sameuser >>> # IPv4 local connections: >>> host all all 127.0.0.1/32 md5 host all all 127.0.0.1/32 trust This will trust all connection coming from the local machine, without requiring to challenge in md5... HTH ANdreaT -- Follow Agilo on Twitter: http://twitter.com/agiloforscrum ----- You received this message because you are subscribed to the Google Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH http://www.agile42.com and is focused in supporting Agilo for Scrum users. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/agilo?hl=en

