I'm copying an existing OpenACS site to a backup development box, and am upgrading PG from 7.0.3 to 7.1.3-4 in the same step. I've dumped the db on the first box, created a new db on the second box, psql'd postgres.sql into the new db and then pg_dump'd the dump datafile into the new db.
When I log into the new database on the backup box, I find all of the
tables from the original site are there (the stock OpenACS tables as
well as my custom tables). However, none of the rows are there;
select count(*) from users; returns zero rows, for
instance, whereas there should be many rows.
The only error I see from the pg_dump that imports the data into the new db is this line--which is the last line in the error file:
psql:/tmp/db.dmp:1: connect: Peer authentication failed for
user 'nsadmin'
This seems like an important clue, but I can't intepret it. I initially pg_dump'd the db on the first box as nsadmin, then created the new db and pg_dump'd the dump file into the new db on the second box also as nsadmin.
I tried doing the process as user postgres but I got a peer authentication error for user 'nsadmin' again.
Any clues what is going on? Many thanks in advance!
Request notifications