ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []


[oracle@rhel6 dbs]$ sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on Sat Aug 20 13:59:05 2011

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

SQL> conn / as sysdba
Connected to an idle instance.
SQL> startup nomount 
ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []
SQL> exit
Disconnected
[oracle@rhel6 dbs]$ 

この問題の根本的な原因は、サーバhostnameが正しく構成されていないこと、hostnameコマンドで得られたホスト名がpingできないこと、Oracle 10 gがホストが到達できないと判断してデータベースを起動してエラーを報告したことです.
解決方法:hostnameを/etc/hostsファイルに追加し、データベースを再起動します.
サーバ名がrhel 6の場合、/etc/hostsに参加します.
27.0.0.1   rhel6 localhost.localdomain localhost4 localhost4.localdomain4
::1         rhel6 localhost.localdomain localhost6 localhost6.localdomain6

変更
/etc/sysconfig/network
hostname=rhel6

データベースを再起動し、、、
Enjoy..............