如何配置 Python 脚本作为守护进程运行

如何配置 Python 脚本作为守护进程运行

我有几个网络服务器位于负载均衡器后面,我在这里找到了“watcher.py”:https://github.com/splitbrain/Watcher

我选择这个脚本有几个原因:通过文件夹递归,大量触发选项

无论如何,我将使用它在负载平衡服务器之间同步 Web 内容。有没有办法确保此脚本在启动时运行?

答案1

我发现处理此类应用程序的最简单方法是安装supervisord,然后使用它来启动、监视和收集脚本的输出。

以下是主管配置文件的示例:

[program:watcher]
command = /usr/bin/python /path/to/watcher.py
stdout_logfile = /var/log/watcher-stdout.log
stdout_logfile_maxbytes = 10MB
stdout_logfile_backups = 5
stderr_logfile = /var/log/watcher-stderr.log
stderr_logfile_maxbytes = 10MB
stderr_logfile_backups = 5

相关内容