ORA-12170: TNS:Connect timeout occurred(ORA-12170: TNS:Connect 超时发生)
问题描述
我尝试使用 Oracle Toad 连接到笔记本电脑中的数据库,但一直出现此错误:
I was trying to connect to the database here in my laptop using Oracle Toad but I kept on having this error:
ORA-12170: TNS:Connect 超时发生
ORA-12170: TNS:Connect timeout occurred
我一直出现此错误的可能原因是什么?
What are the possible reasons why I kept on having this error?
我昨天访问了同一个数据库并且能够访问它.
I accessed the same database yesterday and was able to accessed it.
推荐答案
[在评论中收集答案]
问题是Oracle服务运行在一个IP地址上,而主机配置了另一个IP地址.
The problem is that the Oracle service is running on a IP address, and the host is configured with another IP address.
要查看 Oracle 服务的 IP 地址,请发出 lsnrctl status 命令并检查报告的地址(在本例中为 127.0.0.1,本地主机):
To see the IP address of the Oracle service, issue an lsnrctl status command and check the address reported (in this case is 127.0.0.1, the localhost):
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
要查看主机 IP 地址,请发出 ipconfig(在 windows 下)或 ifconfig(在 linux 下)命令.
To see the host IP address, issue the ipconfig (under windows) or ifconfig (under linux) command.
但是,在我的安装中,Oracle 服务不起作用如果在本地主机地址上设置,我必须设置真实的主机 IP 地址(例如 192.168.10.X).
Howewer, in my installation, the Oracle service does not work if set on localhost address, I must set the real host IP address (for example 192.168.10.X).
为避免将来出现此问题,请勿使用 DHCP 分配主机的 IP 地址,而应使用静态地址.
To avoid this problem in the future, do not use DHCP for assigning an IP address of the host, but use a static one.
这篇关于ORA-12170: TNS:Connect 超时发生的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ORA-12170: TNS:Connect 超时发生
基础教程推荐
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
