The above error appeared in Database Alertlog and it’s related to permission, i am using DNFS as file system for Database :-
ls -ltr $ORACLE_HOME/bin/oradism
-rwxrwxr-x 1 sorabill oinstall 109247 Jul 7 2014 /u01/app/oracle/product/12.1.0/dbhome_1//bin/oradism
as you see from the above the permission for this file is wrong
- Change to root user
- Run the following command :-
- cd /u01/app/oracle/product/12.1.0/dbhome_1//bin
- chmod 750 oradism
- chmod u+s oradism
- Restart DB.
Check again.
Cheers
Osama