如何使用 Jsvc 将 Java 程序作为守护进程启动
我正在使用 Jsvc 启动一个实现 Daemon 接口的 java 程序。但是,当我发出命令
/usr/bin/jsvc -user walikha -home $JAVE_HOME -outfile out.file -errfile '$1' Jooist.Server.jar Main
“但是”时,该命令会静默执行并显示提示。如何检测守护进程是否正在运行?在 Java 可执行文件中,init、start、stop 和 destroy 函数仅使用 Log4J 打印到日志文件。日志文件未创建,并且完全没有迹象表明服务正在运行。我是否遗漏了某些内容,或者在配置和安装 Jsvc 时遗漏了某些内容?
I am using Jsvc to start a java program that implements the Daemon interface. However when I issue the command
/usr/bin/jsvc -user walikha -home $JAVE_HOME -outfile out.file -errfile '$1' Jooist.Server.jar Main
However the command silently executes and displays the prompt. How can I detect if the daemon is running? In the Java executable the init, start, stop and destroy functions just print to a log file using Log4J. The log file is not created and there is absolutely no indication that the service is running. Am I missing something, or have I left out something when configuring and installing Jsvc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
修改您的命令以包含选项“-outfile”和“-errfile”,并提供您自己的日志文件路径。
Modify your command to include options "-outfile" and "-errfile" and provide your own path to the log files.
您可以通过在
/etc/init.d/start/stop
脚本中添加应用程序来将服务作为守护程序启动。You can start a service as daemon by adding your application in
/etc/init.d/ start/stop
scripts.尝试使用
-debug
开关看看发生了什么。但是,您似乎错过了在类路径中包含commons-daemon-1.0.10.jar
。Try the
-debug
switch and see what's going on. However, it looks like you've missed includingcommons-daemon-1.0.10.jar
in your classpath.