Ich will mich gerade in PostgreSQL einarbeiten und mache meine ersten Schritte damit. Grund dafür ist, dass ich TRAC von meiner MySQL Datenbank lösen will und nach PostgreSQL schieben will. Ich hab also postgresql über
Code: Alles auswählen
apt-get install postgresql
Code: Alles auswählen
su -m postgres
Code: Alles auswählen
createuser -U postgres -E -P trac
Code: Alles auswählen
createdb -U postgres -O trac-E UTF8 test_project
Code: Alles auswählen
psql -U trac -W test_project
Code: Alles auswählen
psql: FATAL: IDENT authentication failed for user "trac"
Danke & viele Grüße,
Martin