Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign updiesel - cli "Unable to open the database file" #836
Comments
killercup
added
the
bug
label
Apr 5, 2017
This comment has been minimized.
kollapsderwellenfunktion
commented
Apr 6, 2017
|
i cloned this repository and build redis-cli by myself.(had to deactivate sqlite feature which seems to be broken) and now it works. i installed the non working version with strange. but it now works for me. |
This comment has been minimized.
dreuter
commented
Apr 8, 2017
•
|
Same here... I ran Maybe it is worthwhile noting that I installed I am also running postgres 9.5.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
kollapsderwellenfunktion commentedApr 4, 2017
I have a postgres installation (9.5) and was successfully able to connect to it by using the postgres crate. i was also successfully able to use diesel with sqlite. but when i try to use diesel-cli to setup a database i allways get the error "Unable to open the database file".
I'm using
i tried many combinations to set DATABASE_URL like
with or without quotes, port etc. tried to switch of ssl on postgres too. postgresql log gives no output.
a simple
let conn = Connection::connect("postgresql://planb:*@localhost", TlsMode::None).unwrap();using the postgres crate(0.14.0) works without problems