首页 » ORACLE 9i-23c » Troubleshooting alert log show “Oradism binary does not have root privilege”

Troubleshooting alert log show “Oradism binary does not have root privilege”

alert log frequently show the below worning

--------------------------------------------
Oradism binary does not have root privilege.
Please verify if oradism has required privilege
WARNING: -------------------------------
WARNING: oradism did not start up correctly.
Return code: 16 errno 0 info1 1001 info2 65535
-----------------------------------------------

The oradism executable cannot have 755 (rwx-r-x-r-x) permissions, and should be owned by root like other executables in the $ORACLE_HOME/bin directory.
The permissions for oradism must be 4750 with the SetUID bit for the owner.

Solution:

1. cd $ORACLE_HOME/bin
2. chown root oradism
3. chmod 4750 oradism
4. restart instance

root@solaris_db1:/oracle/app/oracle/product/11.2.4/dbhome_1/bin# ls -l oradism
-rwsr-x---   1 root     oinstall 1411208 Aug 21  2013 oradism

sqlplus / as sysdba << EOF
shutdown immediate;
startup;
EOF
打赏

对不起,这篇文章暂时关闭评论。