Hi,
I try to install libresource for research european network as demo for the first step.
os:linux SUSE 10.0
postgresql install, server is running. I create to user for database acces name kevin and libresource.
I also create the db libresource.
I restart the server.
my postgres.conf:
listen_addresses = '*'
- what IP interface(s) to listen on;
- defaults to localhost, '*' = any
port = 5432
max_connections = 100
- note: increasing max_connections costs about 500 bytes of shared
- memory per connection slot, in addition to costs from shared_buffers
- and max_locks_per_transaction.
#superuser_reserved_connections = 2
#unix_socket_directory = ''
#unix_socket_group = ''
#unix_socket_permissions = 0777 # octal
#rendezvous_name = '' # defaults to the computer name
pg_hba.conf
@authcomment@
- TYPE DATABASE USER CIDR-ADDRESS METHOD
local all all 127.0.0.1 trust
- IPv4 local connections:
host all all 127.0.0.1/32 @authmethod@
- IPv6 local connections:
host all all ::1/128 @authmethod@
and when I run the install *.jar,
I got the message:
unable to connect to the server
ERROR>> Aconnection error has occured: org.postgresql.util.PSQLexception:FATAL:authentification ident échouée pour l'utilisateur "kevin"
I tried with postgres user, without success.
Do you know my mistake???
Thanks
keV