Friday, April 5, 2024

 


Kill all processes of FNDLIBR.


check : ps -fu $USER


List:

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


Kill:


ps -ef |grep FNDLIBR | 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 username|grep FNDLIBR | grep -v grep | awk '{print $2}' | xargs kill -9




a) Concurrent Request Log:

select logfile_name from fnd_concurrent_requests where request_id = <request_id>;

b) Concurrent Output file:

select outfile_name from fnd_concurrent_requests where request_id = <request_id>;

c) Concurrent Manager Worker Log:

select logfile_name from fnd_concurrent_processes where concurrent_process_id=(select controlling_manager

from fnd_concurrent_requests where request_id=<request_id>);

d) FNDOPP log file

SELECT fcpp.concurrent_request_id req_id, fcp.node_name, fcp.logfile_name

FROM fnd_conc_pp_actions fcpp, fnd_concurrent_processes fcp

WHERE fcpp.processor_id = fcp.concurrent_process_id

AND fcpp.action_type = 6

AND fcpp.concurrent_request_id =<request_id>;


No comments:

Post a Comment

Google, Mozilla, and Apple choosing to no longer support Entrust as a publicly trusted certificate authority

Google, Mozilla, and Apple have all decided to stop trusting Entrust’s publicly issued certificates after specific cutoff dates , due to lon...