Ho appena installato PostgreSQL 9.4 su Ubuntu 15.10.
- Ho creato un utente con
createuser -P myuser
- Ho creato un database con
createdb -O myuser mydatabase
- Ho modificato
pg_hba.conf
e aggiuntolocal mydatabase myuser md5
- Ho riavviato PostgreSQL con
sudo service postgresql restart
L'utente myuser è solo un utente PostgresSQL e non ha un account utente su Ubuntu.
Quando provo a connettermi al database con psql -W mydatabase myuser
esso non riesce psql: FATAL: Peer authentication failed for user "myuser"
.
PostgreSQL è in esecuzione ...
● postgresql.service - PostgreSQL RDBMS
Loaded: loaded (/lib/systemd/system/postgresql.service; enabled; vendor preset: enabled)
Active: active (exited) since Thu 2016-03-03 09:53:00 CET; 9min ago
Process: 22219 ExecStart=/bin/true (code=exited, status=0/SUCCESS)
Main PID: 22219 (code=exited, status=0/SUCCESS)
Mar 03 09:53:00 SERVER01 systemd[1]: Starting PostgreSQL RDBMS...
Mar 03 09:53:00 SERVER01 systemd[1]: Started PostgreSQL RDBMS.
... e ascoltando.
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 localhost:postgresql *:* LISTEN
tcp6 0 0 localhost:postgresql [::]:* LISTEN
Active UNIX domain sockets (only servers)
Proto RefCnt Flags Type State I-Node Path
unix 2 [ ACC ] STREAM LISTENING 151534 /var/run/postgresql/.s.PGSQL.5432
Cosa devo fare per connettermi con l'utente myuser al database mydatabase ?