先安装 Setuptools 工具
1 | wget https://bootstrap.pypa.io/ez_setup.py -O - | python |
安装 Supervisor
安装好 Setuptools 后,就可以使用 easy_install 命令啦,我们用它安装 Supervisor
1 | easy_install supervisor |
创建 supervisor 配置文件
1 | echo_supervisord_conf > /etc/supervisord.conf |
启动 supervisor
1 | supervisord -c /etc/supervisord.conf |
附加配置文件示例
1 | ;[program:theprogramname] |