Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想监视在 Windows Server 中运行的 jar 文件。目前我正在命令行中执行 jar 文件。NsClient 安装在 Windows Server 中。任何人都可以帮忙
您可以使用jps编写插件:
jps | find /C "your jar"
如果它正在运行,它将返回 1+,否则返回 0。