这篇文章给大家分享的是有关linux中如何安装supervisor的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。Supervisor是用python开发的一套通用的进程管理程序,能将一个普通的命令行进程变为后台d
这篇文章给大家分享的是有关linux中如何安装supervisor的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
Supervisor是用python开发的一套通用的进程管理程序,能将一个普通的命令行进程变为后台daemon,并监控进程状态,异常退出时能自动重启
# apt-get install Python supervisor
# cat /etc/supervisor/conf.d/mini_breakpad.conf [program:minibreakpad] //进程名称 directory = /root/error/mini-breakpad-server //程序的启动目录 command = node lib/app.js //启动命令 autostart = true //在supervisord 启动的时候也自动启动 startsecs = 5 //启动5秒后没有退出就当做已经正常启动 autorestart = true //程序异常退出后自动重启 startretries = 5 //启动失败自动重试次数 5 user = root //用哪个用户启动 redirect_stderr = true //把 stderr 重定向到 stdout 默认 false,如果是false就不需要设置下面的log配置 stdout_logfile_maxbytes = 20MB //stdout 日志文件大小,默认50MB stdout_logfile_backups = 20 //stdout 日志文件备份数 //stdout 日志文件,需要注意当指定目录不存在时无法正常启动,所以需要手动创建目录(supervisord 会自动创建日志文件) stdout_logfile = /root/error/mini-breakpad-server/logs/stdout.log
# /etc/init.d/supervisor restart # supervisorctl status minibreakpad RUNNING pid 17655, uptime 2:57:07
注意:如果在后台运行的程序,有守护进程的,就不要用supervisor,用了nohup也不行。会报以下错误
# supervisorctl statusminibreakpad FATAL Exited too quickly (process log may have details)
感谢各位的阅读!关于“Linux中如何安装supervisor”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
--结束END--
本文标题: Linux中如何安装supervisor
本文链接: https://lsjlt.com/news/315933.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0