Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Operation timed out - connect(2) (Errno::ETIMEDOUT)

I am trying deploy my rails application on heroku. I used the command

heroku run rake db:migrate

and I am getting the following error

Running rake db:migrate attached to terminal... up, run.2846 !
Heroku client internal error. ! Search for help at: https://help.heroku.com ! Or report a bug at: https://github.com/heroku/heroku/issues/new

Error:       Operation timed out - connect(2) (Errno::ETIMEDOUT)

I tried the same command yesterday it worked perfectly.

like image 338
rajkumarts Avatar asked Dec 06 '22 08:12

rajkumarts


1 Answers

I found the answer here: http://www.orhancanceylan.com/heroku-run-command-operation-timed-out/ You internet provider is blocking port:5000, but you can still deploy.

heroku run:detached rake db:migrate
like image 163
styliii Avatar answered Dec 17 '22 18:12

styliii