Sometimes when you are testing or setting up a server or just porting things to another server, you just want to install the same set of users as you had before without restoring any databases. In PostgreSQL, the users (Login Roles) and group roles are stored at the server level and only the permissions to objects are stored at the database level.
Question:How do you restore just the users and roles without having to do a full pg_dumpall of your server?
Answerpg_dumpall -h localhost -p 5432 -U postgres -v --globals-only > /path/to/useraccts.sql
8.3 introduced the -f option to denote the file name and -r to only backup roles which makes things a bit more predictable how they behave from OS to OS.
pg_dumpall -h localhost -p 5432 -U postgres -v --roles-only -f "/path/to/useraccts.sql"
If you want to backup all globals which includes tables spaces run
pg_dumpall -h localhost -p 5432 -U postgres -v --globals-only -f "/path/to/globals.sql"
Then to restore the accounts on the new server, open up the .sql file generated and delete all the accounts and stuff you don't want to bring over. Then just run the generate .sql file with psql something like
psql -h localhost -d postgres -U postgres -f "/path/to/useraccts.sql"