Eclipse Mac OS X Debug Error: "FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)"

11,367

Solution 1

I had exactly the same issue (on OSX), in my case the line in /etc/hosts was commented out:

127.0.0.1    localhost

It's explained in Eclipse Wiki: https://wiki.eclipse.org/Debug/FAQ#I_can_run_a_program_but_not_debug_it.3F.3F.3F

Solution 2

Resolved Issue by editing /etc/hosts file: I also had similar issue(Able to ping 127.0.0.1, but issue while pinging localhost, debug from eclipse not working). I resolved it by removing entries like ::1 localhost, ff81::1%lo0 localhost with only 127.0.0.1 localhost.... I removed rest of the entries for localhost. I did this for my mac.

After this process I can debug my java application using eclipse.

Sometime, what ever information that I given is not working. In that case, I just moved the file /etc/hosts file to hosts_backup. then restored the file. ie moved file hosts_backup to /etc/hosts. then it starts working. Don't know how it is working. But it resolved my issue

Share:
11,367
Daniel Levi
Author by

Daniel Levi

Updated on June 09, 2022

Comments

  • Daniel Levi
    Daniel Levi almost 2 years
    ERROR: transport error 202: gethostbyname: unknown host
    ERROR: JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)
    JDWP exit error AGENT_ERROR_TRANSPORT_INIT(197): No transports initialized [debugInit.c:750]
    FATAL ERROR in native method: JDWP No transports initialized, jvmtiError=AGENT_ERROR_TRANSPORT_INIT(197)
    

    OS: Mac OS X 10.10.2 MacBook Pro with Retina Display java version "1.8.0_25" Java(TM) SE Runtime Environment (build 1.8.0_25-b17) Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)

    I'm not sure why debug is failing and resulting in these errors. I haven't changed/updated anything that I can recall.

    Any advice? I realize this question has already been asked, but not for Mac OS X and the answers were unclear for me. What should I try?

  • Mizuki
    Mizuki over 6 years
    I typed sudo nano /etc/hosts and then I found out I modified localhost to some name. So, I corrected name as localhost. It's work!