当前位置:  开发笔记 > 后端 > 正文

如何使用url连接到postgresql

如何解决《如何使用url连接到postgresql》经验,为你挑选了3个好方法。

我曾问一个较早的问题,其并未得到任何回复.

基本上我invalid database url在尝试时会出错heroku db:push.

我想我可以尝试显式提供数据库URL.

我试过了:

heroku db:push postgres://postgres@localhost/myrailsdb

但这给了错误:

Failed to connect to database:
  Sequel::DatabaseConnectionError -> PGError fe_sendauth: no password supplied

提供用户名和密码的格式是什么?



1> Håvard S..:

试试heroku db:push postgres://username:password@localhost/myrailsdb.


只需删除密码,即`db push postgres:// username @ localhost/myrailsdb`

2> ma11hew28..:

以下是如何在Ruby脚本中执行此操作:

# Connect to database.
uri = URI.parse(ENV['DATABASE_URL'])
postgres = PG.connect(uri.hostname, uri.port, nil, nil, uri.path[1..-1], uri.user, uri.password)

# List all tables.
tables = postgres.exec('SELECT * FROM pg_catalog.pg_tables')
tables.num_tuples.times do |i|
  p tables[i]
end



3> user181677..:

编辑postgresql配置(pg_hba.conf)文件并将"host"类型方法更改为"trust".但请注意,这不安全.

# TYPE  DATABASE        USER            ADDRESS                 METHOD

# "local" is for Unix domain socket connections only
local   all             all                                     trust
# IPv4 local connections:
host    all             all             127.0.0.1/32            trust
# IPv6 local connections:
host    all             all             ::1/128                 md5

重新启动postgresql服务器并重新运行该命令

$ heroku db:push postgres://postgres@localhost/myrailsdb

以下是我的回答:https://stackoverflow.com/a/7667344/181677

推荐阅读
mobiledu2402851377
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有