How to Stop Concurrent Manager Properly
November 8, 2017
APPS DBA, Installations/Configurations-Applications
How to Stop Concurrent Manager Properly
Step 1. Go to Oracle Application Scripts Home
$cd /apps/ebs/inst/apps/PROD_apps/admin/scripts
Step 2. Stop Concurrent Manager with the following script
$adcmctl.sh stop <appsusername/password>
Step 3. Check the Processes for Concurrent Manager, is it still running.
$ps -ef |grep FNDLIBR
Step 4. If there are processes running the we can manually kill the processes.
$kill -9 `ps -ef|grep FNDLIBR|awk ‘{print $2}’`
or
$ps -ef|grep FNDLIBR|awk ‘{print $2}’|xargs kill -9
Related Posts