sqlplus 在使用 EZCONNECT 语法时得到 ORA-12504
sqlplus gets ORA-12504 when using EZCONNECT syntax
和这个人有相反的问题。
TNSPING OK but sqlplus gives ORA-12154?
我正在尝试在 VMWare Workstation 中的 VM 上安装 Oracle。
我已尝试在以下位置安装 Oracle 11g 和 12c:
- Windows 服务器 2008 R2
- Windows 服务器 2012 R2
- Windows Server 2016 Tech Preview 3(出于绝望)
在每种情况下,我都会看到显示 "minimum requirements not met" 的对话框。
当我检查 AppData 中的安装日志时,我得到了这个。
Checking whether the IP address of the localhost could be
determined... SEVERE: CVU do not support target environment
我已经尝试将我的 VM 设置为使用 NAT 以及使用桥接连接。
根据这个线程,可以忽略 'CVU error' 。 https://community.oracle.com/thread/2478769
Oracle 每次都安装成功,并自动在我的 tnsnames.ora 文件中插入一个条目。我可以通过 sys@TNS_ENTRY as sysdba
作为 sys
用户连接
但是第二次我尝试使用 EZCONNECT 语法时,它不起作用。例如:
>sqlplus /nolog
>connect sys@localhost:1521/service
然后我得到一个 ORA-12504:TNS:Listener 没有在 CONNECT_DATA 中给出 SERVICE_NAME。这很奇怪,因为我什至没有尝试使用 tnsnames.ora 文件中的条目进行连接。我尝试在 Net Manager 的 sqlnet.ora 配置管理器中提升 EZCONNECT。
我已验证 Oracle 安装程序确实将侦听器安装在我名为 "LISTENER"
的机器上
我在裸机上有另一台服务器 运行 Windows Server 2012 R2 运行。我交叉检查了所有的 tns、listener 和 sqlnet 配置,它们都相同(由 11g 安装程序创建的默认配置)
我知道 VMWare 在其 VM 上支持 Oracle 数据库。我试图坚持这里列出的这些最佳实践。 http://www.vmware.com/files/pdf/partners/oracle/Oracle_Databases_on_VMware_-_Best_Practices_Guide.pdf
我检查了 lsnrctl
以确保它正确加载配置。
当我重新启动侦听器时,我在那里看到了我的端点
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mymachinename)(PORT=1521)))
防火墙已关闭。
这是 tnsping 的结果:
C:\Users\Administrator>tnsping localhost
TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production
on 17-SEP-2015 11:36:02
Copyright (c) 1997, 2010, Oracle. All rights reserved.
Used parameter files:
C:\app\Administrator\product.2.0\dbhome_1\network\admin\sqlnet.ora
Used EZCONNECT adapter to resolve the alias Attempting to contact
(DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521)))
OK (0 msec)
^看起来与我的 2012 R2 裸机服务器的 tnsping 完全一样,上面有 11g 可以工作。
我是不是漏掉了一些很简单的东西?我对此束手无策。
这是 EZCONNECT 语法的问题,而不是数据库配置的问题,如 Mark Williams here 所述。连接字符串中的正斜杠容易混淆EZCONNECT,必须这样转义:
C:\>sqlplus sys@\"localhost:1521/orcl12\" as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Fri Sep 18 13:10:19 2015
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Enter password:
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL>
和这个人有相反的问题。 TNSPING OK but sqlplus gives ORA-12154?
我正在尝试在 VMWare Workstation 中的 VM 上安装 Oracle。 我已尝试在以下位置安装 Oracle 11g 和 12c:
- Windows 服务器 2008 R2
- Windows 服务器 2012 R2
- Windows Server 2016 Tech Preview 3(出于绝望)
在每种情况下,我都会看到显示 "minimum requirements not met" 的对话框。 当我检查 AppData 中的安装日志时,我得到了这个。
Checking whether the IP address of the localhost could be determined... SEVERE: CVU do not support target environment
我已经尝试将我的 VM 设置为使用 NAT 以及使用桥接连接。 根据这个线程,可以忽略 'CVU error' 。 https://community.oracle.com/thread/2478769
Oracle 每次都安装成功,并自动在我的 tnsnames.ora 文件中插入一个条目。我可以通过 sys@TNS_ENTRY as sysdba
sys
用户连接
但是第二次我尝试使用 EZCONNECT 语法时,它不起作用。例如:
>sqlplus /nolog
>connect sys@localhost:1521/service
然后我得到一个 ORA-12504:TNS:Listener 没有在 CONNECT_DATA 中给出 SERVICE_NAME。这很奇怪,因为我什至没有尝试使用 tnsnames.ora 文件中的条目进行连接。我尝试在 Net Manager 的 sqlnet.ora 配置管理器中提升 EZCONNECT。
我已验证 Oracle 安装程序确实将侦听器安装在我名为 "LISTENER"
的机器上我在裸机上有另一台服务器 运行 Windows Server 2012 R2 运行。我交叉检查了所有的 tns、listener 和 sqlnet 配置,它们都相同(由 11g 安装程序创建的默认配置)
我知道 VMWare 在其 VM 上支持 Oracle 数据库。我试图坚持这里列出的这些最佳实践。 http://www.vmware.com/files/pdf/partners/oracle/Oracle_Databases_on_VMware_-_Best_Practices_Guide.pdf
我检查了 lsnrctl
以确保它正确加载配置。
当我重新启动侦听器时,我在那里看到了我的端点
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=mymachinename)(PORT=1521)))
防火墙已关闭。
这是 tnsping 的结果:
C:\Users\Administrator>tnsping localhost
TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production on 17-SEP-2015 11:36:02
Copyright (c) 1997, 2010, Oracle. All rights reserved.
Used parameter files: C:\app\Administrator\product.2.0\dbhome_1\network\admin\sqlnet.ora
Used EZCONNECT adapter to resolve the alias Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTOCOL=TCP)(HOST=127.0.0.1)(PORT=1521))) OK (0 msec)
^看起来与我的 2012 R2 裸机服务器的 tnsping 完全一样,上面有 11g 可以工作。
我是不是漏掉了一些很简单的东西?我对此束手无策。
这是 EZCONNECT 语法的问题,而不是数据库配置的问题,如 Mark Williams here 所述。连接字符串中的正斜杠容易混淆EZCONNECT,必须这样转义:
C:\>sqlplus sys@\"localhost:1521/orcl12\" as sysdba
SQL*Plus: Release 12.1.0.2.0 Production on Fri Sep 18 13:10:19 2015
Copyright (c) 1982, 2014, Oracle. All rights reserved.
Enter password:
Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
SQL>