如何使用 jetty.sh 停止 jetty 7 中生成的进程?
我在我的一个项目中使用 Jetty 7.4。我需要配置它,以便它可以在服务器启动或关闭时自动启动/停止。另外,我应该能够按需启动/停止服务器。我正在使用jetty(bin/jetty.sh)附带的启动/停止脚本。服务器启动得很好。然而,当涉及到停止服务器时,我遇到了一些问题。
Jetty 希望您使用“--exec”命令行参数启动服务器,并且该参数会生成另一个 JVM 实例。现在有两个进程在为jetty运行。当您尝试使用脚本停止 jetty 服务器时,第一个进程成功终止。但是,我仍然可以看到生成的进程。
我在网上搜索过,人们在多个地方问过这个问题,但我找不到解决这个问题的方法。有什么想法吗?
谢谢,
NG
I am using Jetty 7.4 for one of my projects. I need to configure it so that it can start/stop automatically whenever the server starts up or goes down. Also, I should be able to start/stop the server on demand. I am using the start/stop script that comes along with jetty(bin/jetty.sh). The server starts just fine. However, when it comes to stopping the server, I am facing some problems.
Jetty expects you to start the server with "--exec" command line parameter and this parameter spawns another JVM instance. Now there are two processes running for jetty. When you try to stop the jetty server using the script the first process dies successfully. However, I can still see the spawned process.
I've searched the web and people have asked this question at multiple places but I could not find a solution to this problem. Any ideas?
thanks,
NG
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这并没有真正回答问题,但我通过在
/etc/default/jetty
中的新文件中指定 JVM 选项来解决这个问题。您可以使用如下方式设置 JVM 选项:JAVA_OPTIONS="-XX:MaxPermSize=128m -Xms1024m -Xmx1024m"
然后您不必使用
--exec< 生成另一个进程/code> ,您只需使用
jetty.sh
即可正常启动和停止一个进程。This doesn't really answer the question, but I worked around this by specifying JVM options in a new file in
/etc/default/jetty
. There you can set JVM options using something like this:JAVA_OPTIONS="-XX:MaxPermSize=128m -Xms1024m -Xmx1024m"
Then you won't have to spawn another process using
--exec
and you can just usejetty.sh
to start and stop the one process normally.