17
Aug

Kill all FNDLIBR processes

Kill all processes of FNDLIBR.

ps -ef |grep FNDLIBR | grep -v grep | awk '{print $2}' | xargs kill -9



Similarly, we can kill other processes as well by replacing 'FNDLIBR' with other process names.

Kill all processes of java.

ps -ef |grep java | grep -v grep | awk '{print $2}' | xargs kill -9



If you have multiple instances on the same server, you can use the below command to kill processes only of a particular user.

ps -fu applmgr|grep FNDLIBR | grep -v grep | awk '{print $2}' | xargs kill -9

Replace 'applmgr' with your username.

Comments

  1. Abhishek Kulkarni says:

    Thank you for sharing the document,very simple and specific.

Comments are closed

Back to Top