跳至内容
菜单
此问题已终结
1 回复
5703 查看

What would a sample configuration for running OpenERP with Circus look like ?

形象
丢弃
最佳答案

Hi,

here is an example of circus.ini you can use to run OpenERP.

[circus]
statsd = 1
httpd = 1

[watcher:webapp]
working_dir = server
cmd = ../bin/chaussette --fd $(circus.sockets.web) --backend gevent openerp-wsgi:application 
numprocesses = 3
use_sockets = True

[socket:web]
host = 127.0.0.1
port = 9999

As you can see i'm using Chaussette to expose OpenERP to Circusd.

The working_dir param in the watcher section refers the the openerp server folder.

openerp-wsgi:application is the wsgi app definition you can find in the openerp-wsgi.py script bundled with openerp and designed to work with Gunicorn.

But as you'll see, it works fine with Chaussette too :)

There are a lot of params and configurations you can play around with, so you'll have to look at circus and chaussette docs.

Let me know you need further infos

形象
丢弃
编写者

Thank you very much Davide!

Thanks. It works. How do you start the cron worker?

相关帖文 回复 查看 活动
2
9月 18
30190
2
3月 15
7482
4
4月 23
45974
1
4月 23
58672
2
7月 17
18584