本文共 579 字,大约阅读时间需要 1 分钟。
故障现象:
检查数据库备份时发现数据库未执行备份,查看日志显示:[root@oracle 11g ~]# su - oracle[root@oracle 11g ~]$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Thu Sep 18 18:14:15 2014
Copyright (c) 1982, 2009, Oracle. All rights reserved.
ERROR:
ORA-00020: maximum number of processes (1000) exceeded #登录oracle时报进程数超过1000的错误,导致无法登录。查看oracle报错实例的进程数,发现很多进程:[root@oracle 11g ~]$ps -ef|grep "oracleXXXX (LOCAL=NO)" #XXXX为数据库实例故障处理:[root@oracle 11g ~]$ps -ef|grep "oracleXXXX (LOCAL=NO)"|grep -v grep|awk '{print $2}'|xargs kill -9重新登录数据库
问题解决。转载于:https://blog.51cto.com/3001441/2072430