0
當我在heroku上的rails應用程序回滾上執行了我的ruby時,應用程序關閉。如何修復它? http://ezgo-test.herokuapp.com/Heroku回滾應用程序出現故障
當我在heroku上的rails應用程序回滾上執行了我的ruby時,應用程序關閉。如何修復它? http://ezgo-test.herokuapp.com/Heroku回滾應用程序出現故障
請檢查日誌並粘貼到具體的錯誤,你可以做如下。
heroku logs --tail --app app-name
根據您的問題「沒有web進程運行」。你可以如下修復它。
heroku ps:scale web=1 --app app-name
按照heroku文檔https://devcenter.heroku.com/articles/error-codes#h14-no-web-dynos-running。
2016-08-09T14:06:47.576041 + 00:00 heroku [router]:at = error code = H14 desc =「沒有web進程運行」method = GET path =「/」host = ezgo-test.herokuapp .com request_id = 4b7b51e7-2b92-4aa3-beba-776113744b16 fwd =「84.22.47.134」dyno = connect = service = status = 503 bytes = –
你是愛好版本還是付費的heroku?無論如何,您可以通過https://devcenter.heroku.com/articles/error-codes#h14-no-web-dynos-運行修復它 –