如何使用 cron 作业保持瘦服务器的活动?
我有一个由 HostingRails 托管并使用瘦服务器的 RoR3 网站。 我注意到瘦服务器经常会宕机,但我找不到原因。
编写 cron 作业不是我的强项,但通过研究,我发现 cron 作业可用于检查服务器状态并在出现故障时重新启动。
所以,我的问题是,如何编写一个脚本来运行 cron 作业,检查瘦服务器是否已关闭,如果是,则重新启动它?
谢谢你!
I have a RoR3 website that is hosted by HostingRails and is using thin server.
I noticed that every so often, the thin server goes down and I can't find a reason for it.
Writing cron jobs are not my strong suite but, from research, I found cron jobs can be used to check the server status and restart if down.
So, my question is, how to write a script that will run a cron job checking if a thin server is down, and if it is, to restart it?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这与你的问题有关。
确保使用 -d 选项开始精简。
-d == 守护进程在后台运行
我希望这会有所帮助。
Maybe this is related to your issue.
Make sure you start thin with the -d option.
-d == Daemonize to run in background
I hope this helps.