heroku db:拉不工作

发布于 2024-09-25 17:26:10 字数 452 浏览 2 评论 0原文

heroku db:pull postgresql://root:@localhost/db_name

此命令后显示此消息

/usr/lib/ruby/gems/1.8/gems/rest-client-1.6.1/lib/restclient/abstract_response.rb:50: warning: Parenthesize argument(s) for future version 加载水龙头 v0.3.13 警告:数据库“postgresql://root:@localhost/db_name”中的数据将被覆盖且不可恢复。 您确定要继续吗? (是/否)? y 无法连接到数据库: 续集::AdapterNotFound -> LoadError: no such file to load --sequel/adapters/postgresql

如何使用 db:pull

heroku db:pull postgresql://root:@localhost/db_name

After this command display this message

/usr/lib/ruby/gems/1.8/gems/rest-client-1.6.1/lib/restclient/abstract_response.rb:50: warning: parenthesize argument(s) for future version
Loaded Taps v0.3.13
Warning: Data in the database 'postgresql://root:@localhost/db_name' will be overwritten and will not be recoverable.
Are you sure you wish to continue? (y/n)? y
Failed to connect to database:
Sequel::AdapterNotFound -> LoadError: no such file to load -- sequel/adapters/postgresql

How to use db:pull

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

请你别敷衍 2024-10-02 17:26:10

首先,您需要修复连接字符串:使用 postgres 而不是 postgresql

您需要安装 pg 数据库适配器才能使用 Sequel 的 postgresql 适配器

gem install pg

您可能还想确保您的 Taps、Sequel 和 Heroku Gem 是最新的:

gem install heroku taps sequel

然后再次尝试 heroku db:pull。如果这不起作用,请发表评论或跳到 Freenode 上的#heroku,我们可以尽力提供帮助。

First, you need to fix your connection string: use postgres instead of postgresql.

You will need to have the pg db adapter installed to use Sequel's postgresql adapter:

gem install pg

You may also want to make sure your taps, sequel, and heroku gems are up to date:

gem install heroku taps sequel

Then try your heroku db:pull again. If that doesn't work, post a comment or hop in #heroku on Freenode and we can try to help.

下雨或天晴 2024-10-02 17:26:10

您的连接字符串错误。尝试:

heroku db:pull postgres://root:@localhost/db_name

Your connection string is wrong. Try:

heroku db:pull postgres://root:@localhost/db_name
眼睛会笑 2024-10-02 17:26:10

一旦我将“pg”gem从版本“0.11.0”升级到“0.12.2”,就开始正常工作。

Started working fine once I upgraded the "pg" gem from version "0.11.0" to "0.12.2".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文