Home  >  Article  >  Database  >  ORA-32004错误 数据库无法启动 解决方法

ORA-32004错误 数据库无法启动 解决方法

WBOY
WBOYOriginal
2016-06-07 17:32:371030browse

单位电源改造需要关闭Oracle数据库服务器,数据库服务器关闭后,启动不起来,报ORA-01031 和 ORA-32004错误 远程telnet连接不上服

单位电源改造需要关闭Oracle数据库服务器,数据库服务器关闭后,启动不起来,报ORA-01031  和 ORA-32004错误  远程telnet连接不上服务器。

解决办法:

经过分析有可能为前期公司要求进行过安全设置,对数据库服务器进行了用户有效期等方面设置,设置后没有进行重启,没有生效,数据库运行正常,现在服务器重新启动设置生效影响了数据库的运行,导致数据库无法启动。

将/etc/inetd.conf 文件中  telnet stream tcp6 nowait root /usr/sbin/in.telnetd  in.telnetd 行前的注释去掉,,重启服务器,远程telnet连接问题解决。

重新创建数据库密码文件

orapwd file=orapwmanagdb password=sys entrires=10 force=y

创建pfile文件

SQL>create pfile from spfile;

在创建的initmanagdb.ora文件中添加

REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE    行

用pfile重新创建spfile

SQL>create spfile from pfile;

启动数据库,数据库启动正常问题解决。

相关阅读:

SPFILE 错误导致数据库无法启动(ORA-01565)

ORA-01172、ORA-01151错误处理

ORA-00600 [2662]错误解决

ORA-01078 和 LRM-00109 报错解决方法

ORA-00471 处理方法笔记

ORA-00314,redolog 损坏,或丢失处理方法

ORA-00257 归档日志过大导致无法存储的解决办法

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn