ERROR: ORA-09925: Unable to create audit trail file Linux-x86_64 Error: 13: Permission denied Additional information: 9925 ORA-09925: Unable to create audit trail file Linux-x86_64 Error: 13: Permission denied
Additional information: 9925
解决方法1:
这个时候检查bin目录下的oracle执行程序权限如下
[marven@hpserver2 ~]$ ls -lrt $ORACLE_HOME/bin/oracle -rwxr-x--x. 1 oracle oinstall 112701117 Dec 6 17:28 /u01/app/oracle/product/10.2.0/db_1/bin/oracle [marven@hpserver2 ~]$ id uid=504(marven) gid=501(oinstall) groups=501(oinstall),502(dba)
使用root用户修改为如下即可: [marven@hpserver2 ~]$ su Password: [root@hpserver2 oracle]# chmod 6755 $ORACLE_HOME/bin/oracle [root@hpserver2 oracle]# ls -lrt $ORACLE_HOME/bin/oracle -rwsr-sr-x. 1 oracle oinstall 112701117 Dec 6 17:28 /u01/app/oracle/product/10.2.0/db_1/bin/oracle [root@hpserver2 oracle]# exit
解决方法2:
将/u01的文件又重新授权
chown -R oracle:oinstall /u01
再次重新连接OK
转载请注明原文地址: https://ju.6miu.com/read-38233.html