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.
我想要当前在服务器上运行的所有 weblogic 实例的列表
ps -ajx | grep java
或者
ps -elf | grep java
这将使所有 java 进程运行,您可以从那里找出 weblogic 进程。
您可以使用 ps 命令列出所有进程并适当地 grep 输出。
ps -ef | grep java
显示进程状态和PID的空洞进程
杀死 -9 PID
它强行杀死特定进程
有时使用这个非常有用和重要的案例
谢谢