我是centos命令和脚本的新手。
方案:
我已经安装了ERPNEXT并且在服务器上工作正常,但我必须通过./lib/wnfy.py --serve
我想要做的是使用supervisord自动启动它。我安装了gunicorn和nginx。在尝试启动supervisord时出现错误:
vps3等] #chkconfig supervisord on [root @ vps3 etc] #service supervisord start /etc/init.d/supervisord:line 11: ./etc/rc.d/init.d/functionsprog=supervisord:没有这样的文件或目录 开始:守护进程--pidfile [-f] /etc/init.d/supervisord:line 14: 成功:未找到命令/etc/init.d/supervisord:line 14:failure: 命令未找到
我还不熟悉事情的运作方式。请指教。提前谢谢。
答案 0 :(得分:0)
你安装了主管吗?跟随,
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