golang supervisor
准备工作:
先整一个简单的golang http服务:文件名为demo
package main
import (
"fmt"
"log"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello world")
})
err := http.ListenAndServe(":9090", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err)
}
}
go build demo(位置在/var/www/demo/demo)
安装supervisor
yum install python-setuptools
easy_install supervisor
echo_supervisord_conf > /etc/supervisord.conf
创建项目的conf(方便管理)
我创建/etc/supervisorconffile/demo.conf(以后每个项目的conf都可以放到此目录下,他会匹配此目录所有conf文件)
[program:demo]
command =/var/www/demo/demo ; 启动命令
autostart = true ; 在 supervisord 启动的时候也自动启动
startsecs = 5 ; 启动 5 秒后没有异常退出,就当作已经正常启动了
autorestart = true ; 程序异常退出后自动重启
startretries = 3 ; 启动失败自动重试次数,默认是 3
user = root ; 用哪个用户启动
redirect_stderr = true ; 把 stderr 重定向到 stdout,默认 false
stdout_logfile_maxbytes = 20MB ; stdout 日志文件大小,默认 50MB
stdout_logfile_backups = 20 ; stdout 日志文件备份数
; stdout 日志文件,需要注意当指定目录不存在时无法正常启动,所以需要手动创建目录(supervisord 会自动创建日志文件)
stdout_logfile = /var/www/demo/logs/demo.log
修改配置文件
打开/etc/supervisord.conf,直接到文件末尾
;[include]
;files = relative/directory/*.ini
改为:
[include]
files = /etc/supervisorconffile/*.conf
启动supervisor
/usr/bin/supervisord -c /etc/supervisord.conf
这时我们的demo已经正常启动
可以通过以下命令查看、操作:
supervisorctl status demo //查看status状态
supervisorctl stop demo //停止demo
supervisorctl start demo //启动demo
//可以看日志文件,默认是 $CWD/supervisord.log
这时我们已经完成了所有操作。
更新配置文件后加载:
supervisorctl update
其他配置解释
[unix_http_server]
file=/tmp/supervisor.sock ; UNIX socket 文件,supervisorctl 会使用
;chmod=0700 ; socket 文件的 mode,默认是 0700
;chown=nobody:nogroup ; socket 文件的 owner,格式: uid:gid
[inet_http_server] ; HTTP 服务器,提供 web 管理界面
port=127.0.0.1:9011 ; Web 管理后台运行的 IP 和端口,如果开放到公网,需要注意安全性
;username=user ; 登录管理后台的用户名
;password=123 ; 登录管理后台的密码
[supervisord]
logfile=/tmp/supervisord.log ; 日志文件,默认是 $CWD/supervisord.log
logfile_maxbytes=50MB ; 日志文件大小,超出会 rotate,默认 50MB
logfile_backups=10 ; 日志文件保留备份数量默认 10
loglevel=info ; 日志级别,默认 info,其它: debug,warn,trace
pidfile=/tmp/supervisord.pid ; pid 文件
nodaemon=false ; 是否在前台启动,默认是 false,即以 daemon 的方式启动
minfds=1024 ; 可以打开的文件描述符的最小值,默认 1024
minprocs=200 ; 可以打开的进程数的最小值,默认 200
; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; 通过 UNIX socket 连接 supervisord,路径与 unix_http_server 部分的 file 一致
;serverurl=http://127.0.0.1:9001 ; 通过 HTTP 的方式连接 supervisord