0

我是centos 命令和脚本的新手。

场景: 我已经安装了 ERPNEXT 并且在服务器上工作正常,但我必须手动完成./lib/wnfy.py --serve

我想做的是使用supervisord自动启动它。我安装了 gunicorn 和 nginx。尝试启动 supervisord 时,出现以下错误:

[root@vps3 etc]# chkconfig supervisord on [root@vps3 etc]# service supervisord start /etc/init.d/supervisord: line 11: ./etc/rc.d/init.d/functionsprog=supervisord: No such文件或目录 开始:守护进程 --pidfile [ -f ]/etc/init.d/supervisord:第 14 行:成功:找不到命令 /etc/init.d/supervisord:第 14 行:失败:找不到命令

我还不熟悉事情的运作方式。请指教。提前致谢。

4

1 回答 1

0

你安装了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
于 2014-03-13T12:49:35.723 回答