2回答
- 新しい順
- 投票が多い順
- コメントが多い順
0
ログを見落としており、ログの再確認で解消できたので、 備忘録として内容記載します。
pg_upgrade_internal.logに下記が出力されていました。
fatal
Your installation contains tables declared WITH OIDS, which is not supported
anymore. Consider removing the oid column using
ALTER TABLE ... SET WITHOUT OIDS;
A list of tables with the problem is in the file:
tables_with_oids.txt
下記を参考に、OIDを削除することでバージョン12.17へのアップグレードに成功しました。 https://dba.stackexchange.com/questions/259359/eliminating-oids-while-upgrading-postgresql-from-9-4-to-12
回答済み 9ヶ月前
0
Stackoverflowの回答にあるようにコマンドもしくはコンソールで詳細なログを確認する必要があります。
https://stackoverflow.com/a/70805896
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.Procedural.Viewing.html
アップグレード方法は以下のブログが参考になると思います。
https://www.cloudbuilders.jp/articles/2276/
回答ありがとうございます。 ログを再確認したところ、原因解明出来ました。