用 Navicat 连接 Oracle 报 ORA-21561: OID generation failed 错误
解决方法
- 打开终端,查看 hostname
hostname- 1
发现是 local 而不是 localhost
- 查看 hosts 文件
cd /etc
open hosts- 1
- 2
内容为
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting. Do not change this entry.
##
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost - 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 问题已经找到了,因为 hostname 和 hosts 文件里的 hostname 不一致
- 解决办法,修改 hostname 与 hosts 里保持一致
sudo scutil --set HostName localhost- 1
- 重新连接 Oracle
本文介绍了解决使用Navicat连接Oracle时出现ORA-21561错误的方法。主要原因是hostname设置不一致导致,通过调整系统的hostname和hosts文件中的设置使其统一,即可解决此问题。
2万+

被折叠的 条评论
为什么被折叠?



