Empty, uneditable pg_hba.conf file

风格不统一 提交于 2019-12-10 01:54:43

问题


I am trying to connect my Sinatra app to PostgreSQL database with this tutorial: http://samuelstern.wordpress.com/2012/11/28/making-a-simple-database-driven-website-with-sinatra-and-heroku/. Everything goes fine until I try to execute:

rake:db migrate

then I get this error:

rake aborted!
PG::ConnectionBad: fe_sendauth: no password supplied

It seems like I should change my permissions in pg_hba.conf file, but, opening it, I see nothing. And, if I try to write something into it, it says it's "readonly".

Am I on the right way of getting rid of the error and where to go next?

edit: actually, if I try to open it from another text editor, it says I have no permission to.


回答1:


So pg_hba.conf was empty because I was trying to open it with SublimeText and sublime didn't tell me that I was not permitted to read it, it just showed me an empty file.
And to edit pg_hba.conf I needed to open it through terminal

/etc/postgresql/9.3/main$ sudo subl pg_hba.conf

with sudo.



来源:https://stackoverflow.com/questions/25974839/empty-uneditable-pg-hba-conf-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!