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.
我正在尝试在 Mac 上查找 java webapp 的 PID。更具体地说,我正在尝试查找在我的桌面上运行的 jetty webapp 的 PID。我尝试使用活动监视器并在线搜索均无济于事。
您可以使用jps,Java 进程状态工具:
jps
这将向您展示,例如:
13651 RemoteMavenServer
在我的 Mac 上,jps 位于:
/usr/bin/jps
打开终端并输入jps -v
jps -v
尝试ps aux | grep APP_NAME在终端中使用。
ps aux | grep APP_NAME
这对我有用
pgrep -f jetty