sqlplus登录时ORA-12547: TNS:lost contact
Posted 尘世间一个迷途小书童
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlplus登录时ORA-12547: TNS:lost contact相关的知识,希望对你有一定的参考价值。
有一些应用系统的OS用户需要与ORACLE用户具有一样的权限,可以用sqlpus登录并操作数据库。
一般是在安装ORACLE软件时与ORACLE用户一起创建,在创建此类用户时主要需要注意的目录及文件的权限。
安装完成后应用系统用户执行sqlplus命令时报错。
[scmadmin@app11 ~]$ sqlplus / as sysdba
SQL*Plus: Release 12.2.0.1.0 Production on Tue Jul 28 22:42:57 2020
Copyright (c) 1982, 2016, Oracle. All rights reserved.
ERROR:
ORA-12547: TNS:lost contact
Enter user-name:
ERROR:
ORA-12547: TNS:lost contact
oracle用户是正常的。
[oracle@app11 bin]$ sqlplus / as sysdba
SQL*Plus: Release 12.2.0.1.0 Production on Tue Jul 28 23:19:41 2020
Copyright (c) 1982, 2016, Oracle. All rights reserved.
Connected to an idle instance.
SQL>
根据mos上的文档 Local SQL*Plus Connection and DBCA Fails With: ORA-12547: TNS:Lost Contact (文档 ID 422173.1)
对sqlplus命令跟踪
strace -f -o /tmp/trace.1.log $ORACLE_HOME/bin/sqlplus / as sysdba
在跟踪文件中发现以下错误信息
22232 write(5, "ORA-12753: The Oracle home user "..., 131) = 131
22232 write(5, "
", 1) = 1
22232 write(5, "ORA-27300: OS system dependent o"..., 91) = 91
22232 write(5, "
", 1) = 1
22232 write(5, "ORA-27301: OS failure message: E"..., 38) = 38
22232 write(5, "
", 1) = 1
22232 write(5, "ORA-27302: failure occurred at: "..., 39) = 39
22232 write(5, "
", 1) = 1
22232 write(5, "ORA-27303: additional informatio"..., 94) = 94
应该是$ORACLE_HOME/bin/oracle权限不对
查看了一下权限是775
[scmadmin@wmsapp11 bin]$ ls -l oracle
-rwxrwxr-x 1 oracle dba 407988856 Jul 28 17:16 oracle
执行以下命令修复后,再次执行正常。
cd $ORACLE_HOME/bin
chmod 6751 oracle
[scmadmin@wmsapp11 ~]$ sqlplus / as sysdba
SQL*Plus: Release 12.2.0.1.0 Production on Tue Jul 28 23:29:23 2020
Copyright (c) 1982, 2016, Oracle. All rights reserved.
Connected to an idle instance.
SQL>
以上是关于sqlplus登录时ORA-12547: TNS:lost contact的主要内容,如果未能解决你的问题,请参考以下文章
ORA-12547: TNS:lost contact报错的处理方法
oracle11g RAC 下DBCA建库失败:ORA-12547: TNS:lost contact
执行dbca静默建库时报错由于以下错误, 无法连接到 ASM: ORA-12547: TNS: 丢失连接
执行dbca静默建库时报错由于以下错误, 无法连接到 ASM: ORA-12547: TNS: 丢失连接