mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:10:54 +00:00
35 lines
709 B
Markdown
35 lines
709 B
Markdown
## supervisord安装
|
|
|
|
1. setuptools安装
|
|
|
|
wget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg
|
|
|
|
sh setuptools-0.6c11-py2.7.egg
|
|
|
|
easy_install supervisor
|
|
|
|
echo_supervisord_conf >/etc/supervisord.conf
|
|
|
|
mkdir /etc/supervisord.conf.d
|
|
|
|
2. 修改配置/etc/supervisord.conf
|
|
|
|
[include]
|
|
files = /etc/supervisord.conf.d/*.conf
|
|
|
|
3. 新建管理的应用
|
|
|
|
cd /etc/supervisord.conf.d
|
|
vim beepkg.conf
|
|
|
|
配置文件:
|
|
|
|
[program:beepkg]
|
|
directory = /opt/app/beepkg
|
|
command = /opt/app/beepkg/beepkg
|
|
autostart = true
|
|
startsecs = 5
|
|
user = root
|
|
redirect_stderr = true
|
|
stdout_logfile = /var/log/supervisord/beepkg.log
|