前段時(shí)間手殘,用exp做數(shù)據(jù)遷移的時(shí)候,因?yàn)閛racle用戶沒有目錄的寫入權(quán)限,于是在linux下修改使用 chown -R oracle:oinstall命令修改u01目錄下的子目錄權(quán)限的時(shí)候,一不小心直接把 /u01
目錄整體修改了權(quán)限,瞬間懵逼了。于是整個(gè)屏幕都在跳著被修改的目錄和文件。
創(chuàng)新互聯(lián)專注于雁峰網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供雁峰營銷型網(wǎng)站建設(shè),雁峰網(wǎng)站制作、雁峰網(wǎng)頁設(shè)計(jì)、雁峰網(wǎng)站官網(wǎng)定制、微信小程序服務(wù),打造雁峰網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供雁峰網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
在執(zhí)行exp命令時(shí)報(bào)出 以下錯(cuò)誤:
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ù)庫時(shí),TNS 報(bào)以下錯(cuò)誤。
但是業(yè)務(wù)還在繼續(xù),沒有受到影響。同時(shí),在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)其它問題。