Ok,
My first day with postgresql.
I've downloaded and installed postgresql (to Windows), and it asked me to set a password (say: 1234).
Then I downloaded phppgadmin, and trying to login to pgadmin.
I tried
root:1234
postgres:1234
I can't login and also get the following php error from pgadmin
( ! ) Strict standards: Only variables should be assigned by reference in C:\wamp\www\phpPgAdmin-5.0.4\classes\database\Connection.php on line 23
psql(the PostgreSQL command prompt) from the Start menu. See the PostgreSQL tutorial. Once you're OK with those consider other tools. As for login, "root" is wrong for sure; the default user ispostgres- but this looks like an issue in PHPPgAdmin where it doesn't appear to like running under PHP strict mode. – Craig Ringer Nov 25 '12 at 4:13pgAdminis the bundled GUI (native program).phpPgAdminis another GUI (web-based). – Erwin Brandstetter Nov 25 '12 at 4:36