1. 程式人生 > >關於 Oracle 改錯許可權問題

關於 Oracle 改錯許可權問題

前段時間手殘,用exp做資料遷移的時候,因為oracle使用者沒有目錄的寫入許可權,於是在linux下修改使用 chown -R oracle:oinstall命令修改u01目錄下的子目錄許可權的時候,一不小心直接把 /u01
目錄整體修改了許可權,瞬間懵逼了。於是整個螢幕都在跳著被修改的目錄和檔案。

在執行exp命令時報出 以下錯誤:

EXP-00056: ORACLE error 27140 encountered
ORA-27140: attach to post/wait facility failed
ORA-27300: OS system dependent operation:invalid_egid failed with status: 1
ORA-27301: OS failure message: Operation not permitted
ORA-27302: failure occurred at: skgpwinit6
ORA-27303: additional information: startup egid = 1020 (asmadmin), current egid = 1000 (oinstall)

連線資料庫時,TNS 報以下錯誤。

關於 Oracle 改錯許可權問題

但是業務還在繼續,沒有受到影響。同時,在oracle使用者下檢視$ORACLE_HOME/bin/oracle檔案許可權:
-rwxr-x--x 1 oracle oinstall 239626641 Mar 3 2017 oracle

解決方案:

在oracle使用者下修改$ORACLE_HOME/bin/oracle許可權
[[email protected]_oracle1 dbhome_1]$ pwd
/u01/app/oracle/product/11.2.0/dbhome_1
[[email protected]_oracle1 dbhome_1]$ cd bin
[

[email protected]_oracle1 bin]$ pwd
/u01/app/oracle/product/11.2.0/dbhome_1/bin
[[email protected]_oracle1 bin]$ chown -R oracle:asmadmin oracle

修改後
-rwxr-x--x 1 oracle asmadmin 239626641 Mar 3 2017 oracle

在修改檔案屬性
[[email protected]_oracle1 ~]$ chmod 6751 $ORACLE_HOME/bin/oracle

[[email protected]

_oracle1 bin]$ls -la oracle
-rwsr-s--x 1 oracle asmadmin 239626641 Mar 3 2017 oracle

已完成

修改後之前發生的問題,得到解決,再也沒出現其它問題。