0
現在我只是試圖使heroku pg:psql
命令工作,但我最終的目的是將我的電腦(本地主機)上的數據庫複製到heroku postgresql數據庫與pg:push
命令。Heroku Postgresql pg:psql沒有路由到主機
現在,當我只是試圖訪問我在Heroku上創建的數據庫中,heroku pg:psql
命令返回:
psql: could not connect to server: No route to host
Is the server running on host "ec*-**-***-***-**.eu-west-1.compute.amazonaws.com" (**.***.***.**) and accepting
TCP/IP connections on port 5432?
postgresql.conf中:(線路沒有評論)
listen_address ='*'
port = 5432
ssl = true
和host all all **.***.***.** trust
在pg_hba.conf
我也嘗試添加規則到iptables,以便從t訪問數據庫他託管着heroku提供的IP地址。
我在Debian計算機上,我該如何解決這個問題?
希望這可以幫助你的問題。 GL –
非常感謝!其實我只是發現問題是來自Internet連接的防火牆...我不接受5432端口的打開...... –