PostgreSQL/admin
		
		
		
		
		
		Jump to navigation
		Jump to search
		
		
	
Notes
There seems to be some correlation between <current system user> and <Postgres user>, at least insofar as running psql as pg's superuser ("postgres" by default) lets you in without a password:
su - postgres -c psql
To make a user into a superuser:
alter user <username> with superuser;