只需运行脚本的最小安全 Web 服务器
Tomcat 偶尔会崩溃(冻结)。所以我只是简单地 ssh 到服务器并重新启动 tomcat,有时是强制的。我希望能够通过一个简单的Web应用程序来执行此操作,如果需要,我可以通过手机访问,或者我的监控应用程序可以访问。
那么,可以执行重新启动 tomcat 的脚本的最小内存占用 Web 服务器是多少?这另一个 Web 服务器显然需要安全,因为我将用它执行关键脚本。
注意:
我想要一个除了 tomcat 之外的 Web 服务器,而不是取代它。这个新的小型 Web 服务器不必运行或基于 Java,它只需要运行某种将重新启动 tomcat 的脚本。
Tomcat occasionally crashes (freezes). So I simply ssh into the server and restart tomcat, sometimes forcibly. I want to be able to do this from a simple Webapp I can access over my phone if needed or my monitoring App can access.
So what's the smallest memory-footprint web server that can execute a script which will restart tomcat? This other web server will clearly need to be secure as I'll be executing critical scripts with it.
NOTE:
I want a web server in addition to tomcat, not to replace it. This new small web server does not have to run or be based on Java, it just needs to run some kind of script that will restart tomcat.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Nginx 是一个非常轻量级的 Web 服务器,非常适合这个要求。不管怎样,我只是将它自动化为一个看门狗脚本,定期测试 tomcat 状态并在需要时重新启动。
Nginx is a very lightweight web server that will fit the bill. Anyway, I would just automate it as a watchdog script that periodically tests tomcat status and restarts when needed.