2014-03-13 60 views
0

我是centos命令和腳本的新手。用erpnext安裝supervisord

情景: 我已經安裝ERPNEXT和工作沒關係的服務器上,但我不得不這樣做./lib/wnfy.py --serve

我想要做的就是做手工,自動啓動它使用supervisord。我安裝了gunicorn和nginx。試圖啓動supervisord這裏的錯誤:

[[email protected] etc]# chkconfig supervisord on [[email protected] etc]# service supervisord start /etc/init.d/supervisord: line 11: ./etc/rc.d/init.d/functionsprog=supervisord: No such file or directory Starting : daemon --pidfile [ -f ]/etc/init.d/supervisord: line 14: success: command not found /etc/init.d/supervisord: line 14: failure: command not found

我還不熟悉如何工作。請指教。提前致謝。

回答

0

您是否安裝了主管?按照,

Install supervisor

Initscripts(使用jkoppe的)。

也用於生產設置,使用gunicorn。主管配置它是,

[program:gunicorn] 
    command=gunicorn -b 127.0.0.1:8000 -w 2 -t 120 lib.webnotes.app:application 
    directory=/path/to/erpnext 
    user=erpnext 
    process_name=%(program_name)s 
    autostart=True 
    autorestart=True 
    redirect_stderr=True 
+0

謝謝你先生的幫助。我會嘗試在Supervisord.conf中添加你的配置,看看會發生什麼。 – user3415137