溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

關(guān)于 Oracle 改錯權(quán)限問題

發(fā)布時間:2020-07-06 07:54:54 來源:網(wǎng)絡(luò) 閱讀:330 作者:xht272829 欄目:關(guān)系型數(shù)據(jù)庫

前段時間手殘,用exp做數(shù)據(jù)遷移的時候,因為oracle用戶沒有目錄的寫入權(quán)限,于是在linux下修改使用 chown -R oracle:oinstall命令修改u01目錄下的子目錄權(quán)限的時候,一不小心直接把 /u01
目錄整體修改了權(quán)限,瞬間懵逼了。于是整個屏幕都在跳著被修改的目錄和文件。

在執(zhí)行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)

連接數(shù)據(jù)庫時,TNS 報以下錯誤。

關(guān)于 Oracle 改錯權(quán)限問題

但是業(yè)務(wù)還在繼續(xù),沒有受到影響。同時,在oracle用戶下查看$ORACLE_HOME/bin/oracle文件權(quán)限:
-rwxr-x--x 1 oracle oinstall 239626641 Mar 3 2017 oracle

解決方案:

在oracle用戶下修改$ORACLE_HOME/bin/oracle權(quán)限
[oracle@dba_oracle1 dbhome_1]$ pwd
/u01/app/oracle/product/11.2.0/dbhome_1
[oracle@dba_oracle1 dbhome_1]$ cd bin
[oracle@dba_oracle1 bin]$ pwd
/u01/app/oracle/product/11.2.0/dbhome_1/bin
[oracle@dba_oracle1 bin]$ chown -R oracle:asmadmin oracle

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

在修改文件屬性
[oracle@dba_oracle1 ~]$ chmod 6751 $ORACLE_HOME/bin/oracle

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

已完成

修改后之前發(fā)生的問題,得到解決,再也沒出現(xiàn)其它問題。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI