ORA-12545: Connect failed because target host or object does not exist
Cause: The address specified is not valid, or the program being connected to does not exist.
Action: Ensure the ADDRESS parameters have been entered correctly; the most likely incorrect parameter is the node name. Ensure that the executable for the server exists (perhaps “oracle” is missing.) If the protocol is TCP/IP, edit the TNSNAMES.ORA file to change the host name to a numeric IP address and try again.
ORA-12545 错误是 Oracle 数据库系统的一种常见的错误类型,该错误代表连接失败,原因是目标主机或目标对象不存在。
1. 客户端传入错误的主机名或 IP 地址;
2. 由于网络问题,服务器端的权限受限,导致服务器无法正常解析服务器的域名;
3. 服务器主机未启动导致客户端无法连接到服务器;
4. tcp/ip 通信协议未安装,无法执行 tcp/ip 通信等。
1. 检查服务器名是否正确,如果不正确,请使用正确的服务器名;
2. 检查网络权限,确保可以通过 DNS 解析服务器端主机名,以及网络服务已经正常启动;
3. 确认服务器端的 Oracle 服务已经正常启动,以及有权限被客户端连接;
4. 安装 tcp/ip 通信协议,检查防火墙设置,确认端口是否被正确放行;
5. 如果以上步骤仍无法解决问题,请检查 Oracle 主机是否被客户端识别,更改 hosts 文件以确保客户端识别 Oracle 主机。