Python龙卷风监督员设置

时间:2017-01-31 09:33:53

标签: python tornado supervisord

我正在尝试使用Supervisor设置龙卷风应用程序

以下是我在主管写的配置:

[unix_http_server]
file=/var/run/supervisor.sock   ; (the path to the socket file)
chmod=0700                       ; sockef file mode (default 0700)
chown=nobody:nogroup

[include]
files = /etc/supervisor/*.ini

其余文件与默认文件相同。

tornado.ini文件:

[program:tornado_main]
command=/home/ubuntu/env/bin/python /home/ubuntu/<repo>/__main__.py
directory=/home/ubuntu/<repo>
user=ubuntu
stdout_logfile = /var/log/supervisor/tornado_main.log
stderr_logfile = /var/log/supervisor/tornado_main_err.log

然后我跑,sudo服务主管重启全部 这运行我的龙卷风应用程序

现在,当我尝试运行我的某个API(比如http://35.154.145.226:3000/questions/)时,它没有返回任何内容

它给了我一个错误:

This site can’t be reached

35.154.145.226 took too long to respond.
Search Google for 154 145 226 3000
ERR_CONNECTION_TIMED_OUT

或&#34;无法访问网站&#34;

我的日志文件中也没有添加任何日志。 不知何故,我猜不到IP。

main .py中的部分代码是:

class Application(tornado.web.Application):
    def __init__(self):
        settings = dict(
            static_path=os.path.join(os.path.dirname(__file__), "static"),
            autoescape=None
        )
        tornado.web.Application.__init__(self, urls, **settings)
app = Application()
options.log_file_prefix = "tornado_log"
enable_pretty_logging(options=options)
app.listen(int(config.get('tornado', 'listening_port')))
tornado.autoreload.start()
tornado.ioloop.IOLoop.current().start()

我在这里缺少什么?

1 个答案:

答案 0 :(得分:1)

ERR_CONNECTION_TIMED_OUT

一个原因是:

EC2 (OR whichever you are using) security group has not allowed inbound connection for port no 3000