您的位置:首页 > 数据库 > Oracle

ERROR:ORA-09925

2016-04-18 12:26 489 查看
[oracle@oracle ~]$ sqlplus /nolog
SQL*Plus: Release 11.2.0.4.0 Production on Fri Apr 15 12:02:16 2016
Copyright (c) 1982, 2013, Oracle.  All rights reserved.
SQL> conn / as sysdba
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


原因:
$ORACLE_HOME/bin/oracle
这个文件的属性有问题,变成了“-rwxr-xr-x ”,正常情况是“-rwsr-sr-x”。

//检查bin目录下的oracle执行程序权限
ls -lrt $ORACLE_HOME/bin/oracle
[oracle@oracle ~]$ cd /oracle/app/product/11.2.0/db_1/bin
[oracle@oracle oracle]$ su
Password:
[root@oracle oracle]# chmod 6755 /oracle
[root@oracle oracle]# su - oracle
[oracle@oracle ~]$ sqlplus /nolog

SQL*Plus: Release 11.2.0.4.0 Production on Fri Apr 15 12:07:54 2016

Copyright (c) 1982, 2013, Oracle.  All rights reserved.

SQL> conn / as sysdba
Connected.


参考内容
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  oracle