supervisor用为golang后台创建守护进程

简介:

supervisor是一个unix的系统进程管理软件,可以用它来管理apache、nginx等服务,若服务挂了可以让它们自动重启。下面基于centos 6.6,描述下具体实现:

1
2
sudo  yum  install  python-setuptools
sudo  easy_install supervisor

如果没有看到什么报错,那么就安装成功了,可以使用echo_supervisord_conf查看配置详情,而后生成配置文件。

1
sudo  echo_supervisord_conf >  /etc/supervisord .conf

假设如下一段简单的golang代码:

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编译,在/usr/local/ponpon/gowork/src/test/生成可执行文件test。

编辑/etc/supervisord.conf,在最后增加运行程序设置


1
2
3
4
5
6
7
8
9
10
11
12
13
14
[program:go-http-server]
command = /usr/local/ponpon/gowork/src/test/test
directory= /usr/local/ponpon/gowork/src/test
autostart= true
autorestart= true
startsecs=10
stdout_logfile= /var/log/stdout .log
stdout_logfile_maxbytes=1MB
stdout_logfile_backups=10
stdout_capture_maxbytes=1MB
stderr_logfile= /var/log/stderr .log
stderr_logfile_maxbytes=1MB
stderr_logfile_backups=10
stderr_capture_maxbytes=1MB

几个配置说明:

command:表示运行的命令,填入完整的路径即可。

directory:表示cd到应用的目录下
autostart:表示是否跟随supervisor一起启动。
autorestart:如果该程序挂了,是否重新启动。
stdout_logfile:终端标准输出重定向文件。
stderr_logfile:终端错误输出重定向文件。

最后启动supervisor

1
sudo  /usr/bin/supervisord  -c  /etc/supervisord .conf

如果提示/tmp/supervisord.sock 报错,删除/tmp/supervisord.sock重新启动supervisor即可










本文转自 ponpon_ 51CTO博客,原文链接:http://blog.51cto.com/liuxp0827/1643620,如需转载请自行联系原作者
目录
相关文章
|
4月前
|
Prometheus 监控 Cloud Native
使用supervisor守护Prometheus进程
使用supervisor守护Prometheus进程
|
7月前
|
Unix Shell Linux
Linux 终端和进程的关系,以及在终端前后台切换进程
Linux 终端和进程的关系,以及在终端前后台切换进程
173 1
|
7月前
|
Linux Shell
Linux 进程的前台/后台切换
当你用shell启动一个程序时,往往他是在前台工作的。程序会一直占用终端命令行,例如你在前台解压的时候必须等着,期间干不了别的事(除非另开一个终端)。 例如经常用连接到远程服务器执行脚本的时候,如果本地网络中断后,这个时候前台进程就结束了,比较的懊恼,必须重新执行。
145 6
|
2月前
|
安全 API C#
C# 如何让程序后台进程不被Windows任务管理器强制结束
C# 如何让程序后台进程不被Windows任务管理器强制结束
80 0
|
4月前
|
Android开发 开发者 Kotlin
Android 多进程情况下判断应用是否处于前台或者后台
本文介绍在多进程环境下判断Android应用前后台状态的方法。通过`ActivityManager`和服务信息`RunningAppProcessInfo`可有效检测应用状态,优化资源使用。提供Kotlin代码示例,帮助开发者轻松集成。
317 8
|
5月前
|
存储 缓存 NoSQL
Redis性能优化问题之优化 Redis fork 耗时严重的问题,如何解决
Redis性能优化问题之优化 Redis fork 耗时严重的问题,如何解决
|
4月前
使用supervisor守护freeswitch进程
使用supervisor守护freeswitch进程
|
5月前
|
应用服务中间件 nginx
cmd 杀掉 nginx后台进程 命令杀掉nginx后台 nginx 常用命令
cmd 杀掉 nginx后台进程 命令杀掉nginx后台 nginx 常用命令
506 0
|
5月前
|
Ubuntu Unix Linux
如何使用 Supervisor 管理你的进程
**Supervisor** 是一款Python编写的进程管理工具,用于类Unix系统,确保应用服务持续运行。常用命令包括:`reload`(重新加载配置)、`status`(查看进程状态)、`shutdown`(关闭所有进程)、`start`和`stop`(控制单个进程)。在CentOS上安装Supervisor用`yum install -y supervisor`,配置文件通常在`/etc/supervisord.conf`。
86 0
|
6月前
|
数据可视化 API 开发工具
详细解读cesi+supervisor可视化集中管理服务器节点进程
详细解读cesi+supervisor可视化集中管理服务器节点进程
99 0