zoukankan      html  css  js  c++  java
  • conn / as sysdba连接不上

    问题:

    SQL> conn / as sysdba
    ERROR:
    ORA-09817: Write to audit file failed.
    Linux-x86_64 Error: 28: No space left on device
    Additional information: 12
    ORA-01075: you are currently logged on
    分析原因:(经百度查询造成的原因是audit所在的文件系统满了,没有多余的空间)

    查看报错日志:cd /u01/app/oracle/diag/rdbms/ora11gr2/ORA11GR2/trace   tail -100f alert_ORA11GR2

    Non critical error ORA-48113 caught while writing to trace file "/u01/app/oracle/diag/rdbms/ora11gr2/ORA11GR2/trace/ORA11GR2_mmon_21952.trc"

    Error message:

    Writing to the above trace file is disabled for now

    查看磁盘占用情况:

    [oracle@oracle trace]$ df -h
    Filesystem            Size  Used Avail Use% Mounted on
    /dev/sda3              22G   21G     0 100% /
    /dev/sda1              99M   22M   73M  23% /boot
    tmpfs                1002M  371M  631M  38% /dev/shm
    /dev/sr0              3.6G  3.6G     0 100% /media/Oracle Linux Server dvd 20110119
    /dev/sr0              3.6G  3.6G     0 100% /mnt
    到trace目录下删除日志:

    [root@oracle trace]# rm -rf *.trm

    [root@oracle trace]# ls

    alert_ORA11GR2.log

    删除日志之后可以正常连接。

  • 相关阅读:
    放射渐变RadialGradient
    return columns.All(new Func<string, bool>(list.Contains));
    AspnetIdentitySample
    Request.GetOwinContext()打不到
    EntityFramework系列:SQLite.CodeFirst自动生成数据库
    EF 索引
    Using Friendly URLs in ASP.NET Web Forms
    OWIN support for the Web API 2 and MVC 5 integrations in Autofac
    owin
    owin中间件
  • 原文地址:https://www.cnblogs.com/gw666/p/7223664.html
Copyright © 2011-2022 走看看