When a Python application goes beyond Bluemix but does not work when launched on Bluemix

This is a question that I am going to answer myself, since I have seen it countless times, and this really should be considered a FAQ.

Suppose you have created a flash drive or a Django application, and it works both in your test applications - outside bluemix and inside bluemix. Then you make changes or enable a new pips import, and now your application still works in your local environment, but it does not work when you click it on Bluemix.

You can see something like:

OUT Starting app instance (index 0) with guid .... 
ERR Instance (index 0) failed to start accepting connections
+4
source share
1 answer

, Bluemix. , , , . , , Procfile .

python Bluemix. , , (- , ) python, , python, bluemix.

runtime.txt, . python, (, python-3.4.3)

python Bluemix, , python . , buildpack manifest.yml. . buildpack: https://github.com/cloudfoundry/python-buildpack#v1.5.1

, Bluemix .

, , Bluemix.

+3

Source: https://habr.com/ru/post/1617223/


All Articles