Heroku DATABASE_URL

发布于 2024-11-06 18:16:35 字数 258 浏览 1 评论 0原文

在heroku上,如何获取 DATABASE_URL 的整个值?

当我发出 a 时,

heroku config --app APP_NAME

我得到了几个配置参数,但 DATABASE_URL 并不完全可见,

DATABASE_URL        => postgres://ruhej...s.com/oeuhenchej

有什么想法吗?

On heroku, how to get the whole value of DATABASE_URL ?

When I issue a

heroku config --app APP_NAME

I get several config parameters but the DATABASE_URL is not entirely visible

DATABASE_URL        => postgres://ruhej...s.com/oeuhenchej

Any idea ?

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

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

发布评论

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

评论(5

南城旧梦 2024-11-13 18:16:35
$ heroku config --app APP_NAME 

(自提出问题以来,Heroku 工具带已更新;该命令现在显示整个 DATABASE_URL。)

$ heroku config --app APP_NAME 

(The Heroku toolbelt has been updated since the question was asked; the command now shows the entire DATABASE_URL.)

氛圍 2024-11-13 18:16:35
$ heroku pg:credentials:url YOUR_DATABASE_NAME

为您提供所需的所有信息(url、端口、数据库名称、用户、密码):

Connection information for default credential.
Connection info string:
   "dbname=xxxxxxxxxxxxxx host=yyyyyyyyyyyyyyyyyyyyyyyyyyy.amazonaws.com port=5432 user=zzzzzzzzzzzzzz password=************* sslmode=require"
Connection URL:
   postgres://zzzzzzzzzzzzzz:*************@yyyyyyyyyyyyyyyyyyyyyyyyyyy.amazonaws.com:5432/xxxxxxxxxxxxxx
$ heroku pg:credentials:url YOUR_DATABASE_NAME

Gives you all the informations needed (url, port, dbname, user, password):

Connection information for default credential.
Connection info string:
   "dbname=xxxxxxxxxxxxxx host=yyyyyyyyyyyyyyyyyyyyyyyyyyy.amazonaws.com port=5432 user=zzzzzzzzzzzzzz password=************* sslmode=require"
Connection URL:
   postgres://zzzzzzzzzzzzzz:*************@yyyyyyyyyyyyyyyyyyyyyyyyyyy.amazonaws.com:5432/xxxxxxxxxxxxxx
凉世弥音 2024-11-13 18:16:35

这可能看起来非常基本,但您的 heroku APP_NAME 是 app_name.heroku.com。您可以通过登录 heroku.com 并查看您的帐户来找到该信息。为了获取您的应用程序配置变量,您只需在控制台中输入:

heroku config --app APP_NAME

This may seem really basic but your heroku APP_NAME is app_name.heroku.com. You can find that by logging into heroku.com and looking in your account. In order to get your app config variables you simply type into the console:

heroku config --app APP_NAME
烟凡古楼 2024-11-13 18:16:35

要获取完整的数据库 URL,请使用 Heroku CLI 中的 config:get

heroku config:get DATABASE_URL -a my-app-name

To get the full database URL, use config:get from the Heroku CLI;

heroku config:get DATABASE_URL -a my-app-name
大姐,你呐 2024-11-13 18:16:35

从heroku获取PostgreSQL转储文件:-

heroku pg:backups:capture

heroku pg:backups
它显示了所有备份

heroku pg:backups:url BackupID

To get PostgreSQL dump file from heroku :-

heroku pg:backups:capture

heroku pg:backups
it shows all the backups

heroku pg:backups:url BackupID

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