supervisord 守护golang 进程,实现优雅重启的例子
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main
import (
"context"
"io"
"log"
"net"
"net/http"
"os"
"os/signal"
"syscall"
"time"
)
func main() {
ctx, cancel := context.WithCancel(context.Background())
// subscribe to SIGINT signals
stopChan := make(chan os.Signal, 1)
signal.Notify(stopChan, os.Interrupt, syscall.SIGTERM, syscall.SIGINT, syscall.SIGUSR2)
mux := http.NewServeMux()
mux.Handle("/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
time.Sleep(10 * time.Second)
_,_=io.WriteString(w, "Finished!")
}))
srv := &http.Server{
Addr: ":8081",
Handler: mux,
BaseContext: func(_ net.Listener) context.Context { return ctx },
}
srv.RegisterOnShutdown(cancel)
go func() {
// service connections
if err := srv.ListenAndServe(); err != nil {
log.Printf("listen: %s\n", err)
}
}()
<-stopChan // wait for SIGINT
log.Println("Shutting down server...")
// shut down gracefully, but wait no longer than 10 seconds before halting
gracefulCtx, cancelShutdown := context.WithTimeout(context.Background(), 10*time.Second)
defer cancelShutdown()
if err := srv.Shutdown(gracefulCtx); err != nil {
log.Printf("shutdown error: %v\n", err)
defer os.Exit(1)
return
} else {
//app.Close() // !important 留意上下文位置
log.Printf("gracefully stopped\n")
}
log.Println("Server gracefully stopped")
}
supervisord.conf 配置
1
2
3
4
5
6
7
8
9
10
[program:test]
;user=root
command = /srv/www/test/test
process_name = test
directory = /srv/www/test
redirect_stderr=true
autostart=true
autorestart=true
stopwaitsecs = 11
stopsignal = INT
关键两行:
1
2
stopwaitsecs = 11
stopsignal = INT
本文网址: https://golangnote.com/topic/179.html 转摘请注明来源