我最近经历了如下所述的数据库迁移过程:
https://devcenter.heroku.com/articles/migrating-from-shared-database-to-heroku-postgres
现在我看到在日志中的一些错误,像这样:
PGError:ERROR:关系的权限被拒绝
任何想法,我应该做什么来解决它?
@H_301_9@@H_301_9@
我有一个类似的问题,但根本原因是,我的应用程序指向旧的开发数据库,已超过其上限为10,000行。
虽然我创建了一个新的基本数据库并备份一切,应用程序仍指向旧的开发数据库。
@H_301_9@ 原文链接:https://www.f2er.com/postgresql/193806.htmlheroku pg:info
检查看到的行:10300/10000(那么你有一个问题)
你需要
1)创建具有更多行的新数据库(基本或“生产” – > Heroku似乎强制升级以赚取更多的钱errrrrr)
2)使用pgbackups备份旧数据库:heroku pgbackups:捕获SMALL_DB_NAME
3)将备份还原到新的数据库:heroku pgbackups:还原BIG_DB_NAME BACKUP_ID(有关更多详细信息,请参阅以下链接)
4)将新数据库推送到应用程序的主数据库:heroku pg:promote BIG_DB_NAME可以总是利用:
heroku maintenance:on (to disable the app while updating)
heroku maintenance:off
heroku pg:info (to check the status)
如果这是问题,你可能想检查:
https://devcenter.heroku.com/articles/heroku-postgres-starter-tier
https://devcenter.heroku.com/articles/migrating-from-shared-database-to-heroku-postgres