I want to give the Rails app to Heroku.

Asked 2 years ago, Updated 2 years ago, 109 views

heroku create
git push heroku master

I've succeeded so far, but

herokurun rakedb:migrate

when done.
ETIMEDOUT:connect ETIMEDOUT 50.19.103.36:5000

Deployment cannot succeed with these errors
Does anyone know what the error is??

ruby-on-rails heroku

2022-09-30 18:50

1 Answers

I can't tell for sure unless I look at the log, but is it probably because port 5000 is not available?Why don't you specify detached and try not to receive a response from heroku?

$herokurun:detached rakedb:migrate

Before you do the above, use another console.

$heroku logs --tail

If you monitor the log as , you will know what is going on.
After implementation,

in
$herokurlogs

But if you look at the log in real time, you can see it intuitively.


2022-09-30 18:50

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.