How to run .jar continually and automatically on Debian server?(如何在 Debian 服务器上连续自动运行 .jar?)
问题描述
我有一个 .jar
文件,我想一直在 Debian
服务器上运行.
I have a .jar
file I want to run all the time on a Debian
server.
目前我已经弄清楚如何通过 Cygwin
上的 ssh
访问服务器并启动 .jar
.但是当我关闭开发机器上的 Cygwin 窗口时,它会终止服务器上的进程(我认为,因为它不再响应).
Currently I have figured out how to access the server via ssh
on Cygwin
and start the .jar
. But when I close the Cygwin window on my development machine, it kills the process on the server (I think, as it's not responding any longer).
目前我是这样开始的:
java -jar myjar.jar packageName.fileNameOfFileWithMainMethod
我需要让这个文件在服务器上自动持续运行(它是我正在开发的系统的一个组成部分).
I need to make this file run automatically and continually on the server (it is an integral part of the system I am developing).
不幸的是,我对服务器管理或一般的非 Windows 操作系统(不是我选择或制造服务器)几乎一无所知,所以我真的不知道该做什么,也不知道该搜索什么(显然,因为我的搜索没有给出可用的结果).
Unfortunately I know next to nothing about server management, or non-windows operating systems in general (wasn't me who chose or made the server), so I really don't know what to do, nor what to search for (apparently, since my searching gave no usable results).
我已阅读(并编辑,因为文本很乱)this 问题,但尽管我觉得它可能暗示了正确的方向,但我并没有从中得到太多帮助.我也尝试了我最好的 googlefu,但它给我带来了很多只是切线相关的结果.
I have read (and edited because the text was a mess) this question, but although I feel it might be hinting in the right direction, I didn't get much help from it. I also tried my best googlefu, but it got me a lot of only tangentially related results.
我想我必须编写某种脚本(可能包含上面的代码行),对其进行一些处理并将其放在服务器上的某个特定位置以完成我想做的事情.
I guess I'll have to make some kind of script (possibly containing the code line above), do some stuff to it and put it somewhere specific on the server to accomplish what I want to do.
有人能解释一下这是怎么做到的吗?
Would someone be so kind as to explain how this is done?
推荐答案
一个简单的建议是使用 Linux 的 CRON.
One simple suggestion would be to run the jar file using Linux's CRON.
这篇文章来自 unix stack exchange 应该让您朝着使用 cron 运行 jar 文件的正确方向前进.
This article from unix stack exchange should get you going the correct direction for running a jar file using cron.
或者,这篇文章来自 mkyong.com 也清晰简洁.
例如:
- 使用 Cygwin 进行连接
- 运行
crontab -e
- 输入
0 * * * * java -jar myjar.jar packageName.fileNameOfFileWithMainMethod
以在整点每小时运行一次 jar 文件.或者,要在服务器启动时启动一次,请输入@reboot java -jar myjar.jar packageName.fileNameOfFileWithMainMethod
- Connect using Cygwin
- Run
crontab -e
- Enter
0 * * * * java -jar myjar.jar packageName.fileNameOfFileWithMainMethod
to run the jar file every hour at the top of the hour. Or, to start it once on server startup enter@reboot java -jar myjar.jar packageName.fileNameOfFileWithMainMethod
这篇关于如何在 Debian 服务器上连续自动运行 .jar?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Debian 服务器上连续自动运行 .jar?
基础教程推荐
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01