Problem:
==========
While applying interim patch, I got Prerequisite check “CheckActiveFilesAndExecutables” failed error and resolved the issue with the help of fuser.
Cause:
=======
Something is using oracle library.
Solution:
=========
I had solved the issue first looking at the log file and saw that the in use control made by fuser, this is also a clue for me to find who is using the library file.
oracle@biasore>/sbin/fuser /u01/app/oracle/product/11.2.0/dbhome_1/lib/libclntsh.so.11.1
/u01/app/oracle/product/11.2.0/dbhome_1/lib/libclntsh.so.11.1: 29279m
oracle@biasore>
oracle@biasore>ps -ef |grep 29279
oracle 22813 3717 0 21:18 pts/13 00:00:00 grep 29279
Here I found some thing is running 29279 pid.
oracle@biasore>kill -9 29279
After that I had successfully applied the patch.
==========
While applying interim patch, I got Prerequisite check “CheckActiveFilesAndExecutables” failed error and resolved the issue with the help of fuser.
Cause:
=======
Something is using oracle library.
Solution:
=========
I had solved the issue first looking at the log file and saw that the in use control made by fuser, this is also a clue for me to find who is using the library file.
oracle@biasore>/sbin/fuser /u01/app/oracle/product/11.2.0/dbhome_1/lib/libclntsh.so.11.1
/u01/app/oracle/product/11.2.0/dbhome_1/lib/libclntsh.so.11.1: 29279m
oracle@biasore>
oracle@biasore>ps -ef |grep 29279
oracle 22813 3717 0 21:18 pts/13 00:00:00 grep 29279
Here I found some thing is running 29279 pid.
oracle@biasore>kill -9 29279
After that I had successfully applied the patch.
Comments
Post a Comment