ORA-00122: cannot initialize network configuration ORACLE 报错 故障修复 远程处理

文档解释

ORA-00122: cannot initialize network configuration

Cause: ORACLE could not initialize SQL*Net version 2.

Action: Check the error stack for detailed information.

官方解释

Cause: Oracle failed to perform the required network configuration operations.

原因:Oracle无法执行所需的网络配置操作。

常见案例

1.当安装完以来后,发现无法连接数据库出现这个错误;

2.当对数据库执行DROP/CREATE PLUGGABLE DATABASE或IGNORE ORACLE CONFIGURATION文件时,也会出现该错误。

正常处理方法及步骤

1.检查以下文件$ORACLE_HOME/network/admin/sqlnet.ora和$ORACLE_HOME/network/admin/listener.ora中的错误;

2.检查tnsnames.ora文件,确保其中的别名正确无误;

3.尝试增加超级用户的登录信息的管理权限:grant connect, resource, dba, dba administer to user_name identified by no_password;

4.检查编辑文件$ORACLE_HOME/network/admin/sqlnet.ora,确保设置正确;

5.使用如下命令来检查是否配置正确:$ORACLE_HOME/bin/tnsping sid;

6.重新启动listener:lsnrctl stop; lsnrctl start

7.尝试重启数据库:shutdown; start.


数据运维技术 » ORA-00122: cannot initialize network configuration ORACLE 报错 故障修复 远程处理