刚刚装完Oracle 以OS认证方式连接ASM实例的时候报错
ORA-12547: TNS:lost contact
如下所示:
[oracle@ASM database]$ export ORACLE_SID=+ASM
[oracle@ASM database]$ sqlplus /nolog
SQL*Plus: Release 10.2.0.1.0 - Production on Thu Mar 26 23:29:07 2009
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> conn / as sysdba
oracle+ASM: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
ERROR:
ORA-12547: TNS:lost contact
造成这个错误的原因,其实是安装Oracle的时候少装了libaio包
切换到root用户
[root@ASM RPMS]# ls -lh libaio*
-r--r--r-- 2 root root 19K Jan 2 2006 libaio-0.3.105-2.i386.rpm
-r--r--r-- 2 root root 10K Jan 2 2006 libaio-devel-0.3.105-2.i386.rpm
[root@ASM RPMS]# rpm -ivh libaio-0.3.105-2.i386.rpm
Preparing... ########################################### [100%]
1:libaio ########################################### [100%]
[root@ASM RPMS]#
重新登录就OK了。
阅读(10616) | 评论(0) | 转发(0) |