Heroku db:push fails with segfault Heroku db:push fails with segfault heroku heroku

Heroku db:push fails with segfault


Had this problem as well, it was extremely annoying but eventually I got it to work. I had the toolbelt installed but it started working once I did this:

gem install herokusudo gem install taps

Yes, the toolbelt is already installed but I think this really fixed it.Plenty of people are having this problem, you're not alone.

Hope this helps (:


Your code is trying to run the 1.9.2 version of SQLite using Ruby 1.8.7.

I would suggest switching to 1.9.2 before trying your push.

rvm use 1.9.2-p290heroku db:push

Ideally you want to be switching to 1.9.2 full stop.