ipc-daemon2 &
initdb -D /pgsql -W -E LATIN1
(this ran through the process and I set the superuser pass)
/bin/pg_clt -D /pgsql -l logfilestart
-database successfully started
Now, I've got phppgadmin on the server but can't get it to connect. I've tried setting the host to localhost and '' but not working. Trying to login as [myself] with superuser pass I created with initdb.
Last edited by dragonreborn on Wed Mar 24, 2004 11:14 am, edited 1 time in total.
- superuser should not be root user, just a "postgres" user should be used
- check the config.inc.php file for phppgadmin and make sure that you have specifed the host (localhost), port (5432), username (postgres), password (pass)
- Make sure you are using $cfgServers[1] and not [0]
- Start the postmaster with the -i option so that it is listening on ports and not socks
// If extra login security is true, then logins via phpPgAdmin with no
// password or certain usernames (pgsql, postgres, root, administrator)
// will be denied. Only turn this off once you have read the FAQ and
// understand how to change PostgreSQL's pg_hba.conf to enable
// passworded local connections.
$confї'extra_login_security'] = true;