ORA-30679: JDWP-based debugging not supported in this configuration ORACLE 报错 故障修复 远程处理

文档解释

ORA-30679: JDWP-based debugging not supported in this configuration

Cause: An attempt to open a debugging connection failed because this server configuration cannot support the required asynchronous socket traffic detection.

Action: This feature will not work under this server configuration. Either the feature is not supported on this platform at all, or is available only through use of a protocol=tcp dispatcher in shared-server configurations. Please consult the platform-specific documentation and “readme” material.

这个错误表明,即使安装了JDK,但Java虚拟机(JVM)实例仍然不具备进行JDWP( Java Debug Wire Protocol )调试的环境。

官方解释

ORA-30679表明,在你的配置下,JDWP调试不受支持,或者安装的JDK版本低于Java 8u40。

常见案例

1. 安装的JDK版本很低:JDWP调试需要JDK 8u40以上。 查看安装的JDK版本,运行以下命令:java -version

2. JDK覆盖不完全:不同的系统可以使用不同的JDK版本,如果JDK安装不正确,如果/usr/bin没有指向JAVA 8u40及以上,那么可能会出现这样的错误。

正常处理步骤

1. 核实JDK版本:确保安装的是JDK 8u40及以上版本,可以通过java -version来确认

2. 检查JDK覆盖:确保/usr/bin上安装的JDK指向正确的文件路径,如果JDK安装不正确,可能会出现这样的错误

3. 更新JDK:根据系统的不同,在相应的网址上下载正确的JDK,并安装正确的JDK版本到/usr/bin上。


数据运维技术 » ORA-30679: JDWP-based debugging not supported in this configuration ORACLE 报错 故障修复 远程处理