python-将花部署到Heroku

我正在按照https://github.com/jorilallo/celery-flower-heroku上的说明将Flower芹菜监控应用程序部署到Heroku.

配置和部署我的应用程序后,我在heroku日志中看到以下内容:

Traceback (most recent call last):
  File "/app/.heroku/python/bin/flower", line 9, in <module>
    load_entry_point('flower==0.7.0', 'console_scripts', 'flower')()
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/__main__.py", line 11, in main
    flower.execute_from_commandline()
  File "/app/.heroku/python/lib/python2.7/site-packages/celery/bin/base.py", line 306, in execute_from_commandline
    return self.handle_argv(self.prog_name, argv[1:])
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/command.py", line 99, in handle_argv
    return self.run_from_argv(prog_name, argv)
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/command.py", line 75, in run_from_argv
    **app_settings)
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/app.py", line 40, in __init__
    max_tasks_in_memory=max_tasks)
  File "/app/.heroku/python/lib/python2.7/site-packages/flower/events.py", line 60, in __init__
    state = shelve.open(self._db)
  File "/app/.heroku/python/lib/python2.7/shelve.py", line 239, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/app/.heroku/python/lib/python2.7/shelve.py", line 223, in __init__
    Shelf.__init__(self, anydbm.open(filename, flag), protocol, writeback)
  File "/app/.heroku/python/lib/python2.7/anydbm.py", line 85, in open
    return mod.open(file, flag, mode)
  File "/app/.heroku/python/lib/python2.7/dumbdbm.py", line 250, in open
    return _Database(file, mode)
  File "/app/.heroku/python/lib/python2.7/dumbdbm.py", line 71, in __init__
    f = _open(self._datfile, 'w')
IOError: [Errno 2] No such file or directory: 'postgres://USERNAME:PASSWORD@ec2-HOST.compute-1.amazonaws.com:5432/DBNAME.dat'

注意那里的.dat附录吗?不知道它来自哪里,它不存在于我的DATABASE_URL env变量中.

此外,上面的误差与花朵0.7有关.我还尝试安装0.6,我会进一步进行安装(即可以正确识别数据库并建立连接),但是一旦花开始,我就会收到以下警告:

2014-06-19T15:14:02.464424+00:00 app[web.1]: [E 140619 15:14:02 state:138] Failed to inspect workers: '[Errno 104] Connection reset by peer', trying again in 128 seconds
2014-06-19T15:14:02.464844+00:00 app[web.1]: [E 140619 15:14:02 events:103] Failed to capture events: '[Errno 104] Connection reset by peer', trying again in 128 seconds.

在我的浏览器中加载花的确显示了一些标签,但没有数据.

我该如何解决这些问题?

解决方法:

Flower不支持数据库持久性.使用shelve模块将状态保存到文件.

上一篇:python-Heroku / Flask / Postgres:无法连接到服务器


下一篇:Heroku的Python找不到要导入的redis(redistogo)