Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

debugger stubbornly refuses to use correct IP address

662886Jul 16 2009 — edited Jul 20 2009
I'm trying to use SQL Developer 1.5.4 to debug a stored procedure.

Sql Developer is running on my laptop: 192.168.8.148.
My database server is running on 192.168.8.197. Another machine on my LAN.

I'm trying to start a debugging session, I see

Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '172.x.y.x', '64179' )
ORA-30683: failure establishing connection to debugger
ORA-12535: TNS:operation timed out

172.x.y.z is the address from my VPN. That's not right. My database server isn't on VPN. So I turn OFF the VPN, and now I see

Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '192.168.80.1', '64195' )
ORA-30683: failure establishing connection to debugger
ORA-12535: TNS:operation timed out

192.168.80.1 is assigned to 'VMware Virtual Ethernet Adapter for VMnet1' The virtual adapter created for HOST ONLY connections. My server isn't running in a VM (ok, it is, but not on this host)

So I disable that adapter. and now:

Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '192.168.153.1', '64234' )
ORA-30683: failure establishing connection to debugger
ORA-12535: TNS:operation timed out

192.168.153.1 is assigned to 'VMware Virtual Ethernet Adapter for VMnet8' The virtual adapter created for NAT connections. My server still isn't running on this host

So I disable that adapter, and now, FINALLY I can debug the stored procedure. But now I can't get email, nor can I have any VM's running.


So how do I make the debugger use the same network adapter that made the connection to the server
This post has been answered by Jim Smith on Jul 16 2009
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 17 2009
Added on Jul 16 2009
2 comments
1,265 views