From: | "Fehrle, Brian" <bfehrle(at)comscore(dot)com> |
---|---|
To: | Jorge Torralba <jorge(dot)torralba(at)gmail(dot)com>, "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org> |
Cc: | "(at) DBA - West" <dba-west(at)comscore(dot)com> |
Subject: | Re: Upgrading from 9.2 -> 9.6: ERROR with 'could not execute query:ERROR: permission denied for type my_type_name' |
Date: | 2017-12-01 07:22:08 |
Message-ID: | CY4PR03MB24537CE6F01B2A122B9E0FC5CE390@CY4PR03MB2453.namprd03.prod.outlook.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
It's masked for email. The real use doesn't start with pg_, they are custom users for internal use.
________________________________
Brian Fehrle Database Administrator II | comScore, Inc.
bfehrle(at)comscore(dot)com
comscore.com
This e-mail (including any attachments) may contain information that is private, confidential, or protected by attorney-client or other privilege. If you received this e-mail in error, please delete it from your system and notify sender.
From: Jorge Torralba <jorge(dot)torralba(at)gmail(dot)com>
Sent: Thursday, November 30, 2017 7:50:22 PM
To: Fehrle, Brian; pgsql-admin(at)postgresql(dot)org
Cc: @ DBA - West
Subject: RE: Upgrading from 9.2 -> 9.6: ERROR with 'could not execute query:ERROR: permission denied for type my_type_name'
Is “some_user” the actual username or are you just masking it for the email?
Does the real user start with pg_ ?
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
From: Fehrle, Brian<mailto:bfehrle(at)comscore(dot)com>
Sent: Thursday, November 30, 2017 6:43 PM
To: pgsql-admin(at)postgresql(dot)org<mailto:pgsql-admin(at)postgresql(dot)org>
Cc: @ DBA - West<mailto:dba-west(at)comscore(dot)com>
Subject: Upgrading from 9.2 -> 9.6: ERROR with 'could not execute query:ERROR: permission denied for type my_type_name'
Hi all,
I'm upgrading a database from 9.2 to 9.6 and I'm running into an interesting error. I've upgraded dozens of very similar databases already in the same configuration, but each database has different schema definitions, and this is the first one with an error like this that we've seen.
The error for this one is here from upgrade log:
pg_restore: [archiver (db)] Error while PROCESSING TOC:
pg_restore: [archiver (db)] Error from TOC entry 214183; 0 0 ACL my_type_name some_user
pg_restore: [archiver (db)] could not execute query: ERROR: permission denied for type my_type_name
Command was: REVOKE ALL ON TYPE "my_type_name" FROM PUBLIC;
REVOKE ALL ON TYPE "my_type_name" FROM "some_user";
SET SESSION AUTHORIZATION ...
My upgrade command itself is pretty standard:
/usr/pgsql-9.6/bin/pg_upgrade -k --old-bindir=/usr/pgsql-9.2/bin/ --new-bindir=/usr/pgsql-9.6/bin/ --old-datadir=/mnt/db/data.old/ --new-datadir=/mnt/db/data/
I'm running the upgrade as the linux user 'postgres' as well, and verified with the -v (verbose) command that everything in the upgrade is running as the superuser 'postgres'. In wonder as to why I could be getting this error, I did a pg_dump -s (schema only) of the database to be upgraded, and here's the permission section for this type:
REVOKE ALL ON TYPE my_type_name FROM PUBLIC;
REVOKE ALL ON TYPE my_type_name FROM some_user;
SET SESSION AUTHORIZATION some_other_user;
GRANT ALL ON TYPE my_type_name TO PUBLIC;
RESET SESSION AUTHORIZATION;
And here is the \dT+ of the type:
my_database=> \dT+ my_type_name
List of data types
Schema | Name | Internal name | Size | Elements | Owner | Access privileges | Description
--------+--------------+---------------+-------+----------+------------+--------------------+-------------
public | my_type_name | my_type_name | tuple | | some_user | =U/some_other_user |
(1 row)
Using verbose output, the exact command that pg_restore is running is:
"/usr/pgsql-9.6/bin/pg_restore" --host '/home/postgres' --port 50432 --username 'postgres' --exit-on-error --verbose --dbname 'dbname=my_database' "pg_upgrade_dump_208717.custom" >> "pg_upgrade_dump_208717.log" 2>&1
I've tried revoking all permissions from PUBLIC and all actual users associated with this type before upgrade, and no matter what, results in the same error. This is 100% reproducible.
Anyone know of anything I may be missing? I don't see how the superuser 'postgres' has any permission denied issues.
Extra Details:
CentOS release 6.9 (Final)
psql (PostgreSQL) 9.2.24 via PGDG RPM
psql (PostgreSQL) 9.6.5 via PGDG RPM
Brian
Fehrle
Database Administrator II
|
comScore, Inc.
bfehrle(at)comscore(dot)com<mailto:bfehrle(at)comscore(dot)com>
comscore.com<http://www.comscore.com/>
This e-mail (including any attachments) may contain information that is private, confidential, or protected by attorney-client or other privilege. If you received this e-mail in error, please delete it from your system and notify sender.
From | Date | Subject | |
---|---|---|---|
Next Message | Achilleas Mantzios | 2017-12-01 07:29:40 | Re: Newbie looking for good tutorial to install PL/java for postgres 9.6 |
Previous Message | Jorge Torralba | 2017-12-01 02:50:22 | RE: Upgrading from 9.2 -> 9.6: ERROR with 'could not execute query:ERROR: permission denied for type my_type_name' |