Startup Database Produces ORA-00600: [Keltnfy-Ldminit]

简介: 场景: 启动数据库的之后,alter出现了如下错误 : Errors in file /arp/oraarp/admin/arpdb/udump/arpdb_ora_10338.

场景:

启动数据库的之后,alter出现了如下错误 :

Errors in file /arp/oraarp/admin/arpdb/udump/arpdb_ora_10338.trc:
ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
USER: terminating instance due to error 600
Instance terminated by USER, pid = 10338


解决方法:
一般来说,就是hosts文件被别人动了,我这里的问题就是hosts被改过了。如下:

cat  /etc/hosts

127.0.0.1    localhost

然后,我修改成127.0.0.1   localhost.localdomain    localhost,数据库就正常启动了



以下是官方给予的其他可能出现的问题。

  • Check permission on /etc/hosts
    $ ls -l /etc/hosts
    -rw-r--r--  2 root root 194 Oct 17  2006 /etc/hosts
  • Check if /etc/hosts file is correctly configured
     ( all of this on one line ).

 

  • Check the hostname:
$ hostname
$ ping `hostname`


 

  • If you have DNS setup, ping is not a tool to diagnose DNS problem. A better tool to use is nslookup, dnsquery, or dig. 


$ nslookup  
$ nslookup 
$ nslookup 


 

  • Check nsswitch.conf


$ more nsswitch.conf
hosts:      files dns




 

相关文章
|
数据库
Duplicating a Database
Duplicating a Database
197 0
Duplicating a Database
|
Java 关系型数据库 MySQL
database.propertise
数据库连接8一下
|
SQL 数据库 索引
|
数据库 机器学习/深度学习 关系型数据库
|
关系型数据库 数据库 Oracle
|
SQL 存储 Oracle
ORACLE startup报错之ORA-01261&&ORA-01263&&ORA-00202&&ORA-00205
    系统环境:windows server 2008R2    数据库环境:oracle 11.2.0.1    问题描述:一测试数据库oradb启动时报错ORA-01261&&ORA-00202,报错日志如下: C:\Users\localadmin>sqlplus / as sysdba SQL*Plus: Release 11.
1452 0
|
SQL 监控 Oracle
ORACLE startup报错之ORA-01154&&ORA-01155&&ORA-01033&&ORA-03113
    今天,一实施同事求助,说一地市oracle数据库无法通过远程连接,连接报错如图: 操作系统:windows server2008 R2  数据库版本:oracle 11.2.0.1 初看报错貌似数据库正处在打开或关闭的过程中。
1651 0