Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在Monit中监控一个普通的C程序,但是我不知道如何运行该程序,在Monit的控制文件中应该设置什么配置。
您需要获取程序的 PID 才能使用 Monit 对其进行监控。一些程序允许命令行参数给出要写入 PID 的文件的位置。否则,您可以尝试从将 PID 写入已知位置的包装脚本启动程序,例如/usr/bin/myprogram & && jobs -p > /var/run/myprogram.pid在bash.
/usr/bin/myprogram & && jobs -p > /var/run/myprogram.pid
bash