On Sat, Dec 6, 2008 at 4:21 PM, Eugene V. Lyubimkin <[EMAIL PROTECTED]> wrote: > 中和刘 wrote: >> I'm learnimg to use postgresql-8.3 database server on debian sid, and >> I have installed it successfully from debian package, then when i read >> the document from postgresql to learn to manage it, it says: >> (If you are installing a pre-packaged distribution, such as an RPM or >> Debian package, ignore this chapter and read the packager's >> instructions instead) >> so i'm wondering where is the packager's instructions? thanks > Debian packagers have done all needed for you. Just install postgresql-8.3 > package, it's a > PostgreSQL server. > > -- > Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com > Ukrainian C++ developer, Debian APT contributor > >
thank you, i have another problem, when i connect to it using pgadmin3(from the local machine), i got the error: -------------- An error has occurred: Error connecting to the server: FATAL: password authentication failed for user "postgres" ---------------- how can i fix it so that i can get pgadmin work? thanks here is my pg_hda.conf ------------------------ # 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 # IPv6 local connections: host all all ::1/128 md5 -----------------------