Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-27369: job of type EXECUTABLE failed with exit code: Operation not permitted

4133857Feb 9 2020 — edited Feb 18 2020

I am trying to invoke a shell script(.sh) from scheduled jobs but it encounter an error as "No such file or directory" but the shell script is available in the respective path.

The additional details displayed was  ORA-27369: job of type EXECUTABLE failed with exit code: Operation not permitted.

Workaround done: With respective to the online references I have followed the below steps but still facing the same issue. Please advise

1. Relinking the Binary (Using "relink all") might also change the permissions and ownership for files jssu,extjob,externaljob.ora.You need to manually change the permissions and ownership.As root user,please perform

# chown root $ORACLE_HOME/bin/extjob
# chmod 4750 $ORACLE_HOME/bin/extjob

# chown root $ORACLE_HOME/rdbms/admin/externaljob.ora
# chmod 640 $ORACLE_HOME/rdbms/admin/externaljob.ora

# chown root $ORACLE_HOME/bin/jssu
# chmod 4750 $ORACLE_HOME/bin/jssu

Comments
Post Details
Added on Feb 9 2020
6 comments
3,194 views