Thread: moving users/roles from one server to another?
I'm a newbie to PG administration (although I have experience with other DBs). I need to move a single database to a brand new server. I've set up the new server with initdb, set up pg_hba.conf and postgresql.conf, and I can use dump and restore to move the database to the new environment. What I can't figure out is how to move all the existing users and roles over. I know about pg_dumpall, but that seems to be overkill -- I don't need to move *all* the databases on my original server, just one of them. Is there a way to copy over just the users (with their passwords) and the roles?
Chris Curvey wrote: > I'm a newbie to PG administration (although I have experience with > other DBs). I need to move a single database to a brand new server. > > I've set up the new server with initdb, set up pg_hba.conf and > postgresql.conf, and I can use dump and restore to move the database > to the new environment. > > What I can't figure out is how to move all the existing users and > roles over. I know about pg_dumpall, but that seems to be overkill -- > I don't need to move *all* the databases on my original server, just > one of them. > > Is there a way to copy over just the users (with their passwords) and > the roles? > > pg_dumpall -g If need be, you can edit the resulting SQL to only move over the bits you need. -- Tommy Gildseth DBA, Gruppe for databasedrift Universitetet i Oslo, USIT m: +47 45 86 38 50 t: +47 22 85 29 39
pg_dumpall has a flag for globals only which dumps an SQL file with that info. Check it out pg_dumpall --help On Dec 4, 2008, at 10:55, Chris Curvey <ccurvey@gmail.com> wrote: > I'm a newbie to PG administration (although I have experience with > other DBs). I need to move a single database to a brand new server. > > I've set up the new server with initdb, set up pg_hba.conf and > postgresql.conf, and I can use dump and restore to move the database > to the new environment. > > What I can't figure out is how to move all the existing users and > roles over. I know about pg_dumpall, but that seems to be overkill -- > I don't need to move *all* the databases on my original server, just > one of them. > > Is there a way to copy over just the users (with their passwords) and > the roles? > > > -- > Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgsql-admin