正确的 pid 文件使用
我不清楚 pid 文件的需求和用法,我想知道 pid 文件的正确用法是什么以及围绕它的最佳实践是什么。
I am unclear on the need and the usage of a pid-file and I wanted to know what is the correct usage of a pidfile and what are the best practices surrounding it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在Linux中,通常在/var/run中列出了所有当前正在运行的进程的pid文件,显然它们包含进程ID。因此,当您使用像 ps aux 这样的命令时,它们将进程 ID (PID) 列为一列,您可以将它们用作比较的基础
in linux, typically in /var/run there are pidfiles listed for all currently running processes and they contain, obviously, the process id. so when you use commands like ps aux, and they list the process id (PID) as a column, you may use them as a base of comparison