Can't heroku run rake db migrate through my app

后端 未结 1 758
抹茶落季
抹茶落季 2020-12-17 17:30

it is my first time to encounter such error(s):

Running `rake db:migrate` attached to terminal... up, run.8524
 !    Heroku client internal error.
 !    Sear         


        
相关标签:
1条回答
  • 2020-12-17 18:23

    Try to run it in the "background"

     heroku run:detached rake db:migrate
    

    You can also try heroku troubleshooting, as it appears to be a connection problem.

    heroku run rails console
    telnet rendezvous.runtime.heroku.com 5000
    

    If it doesn't work, you probably have a firewall blocking your connection to heroku.

    0 讨论(0)
提交回复
热议问题