Jeremy Villa
Jeremy Villa

Reputation: 169

Tomcat Debug Error: Unable to open debugger port (127.0.0.1:63199): java.net.BindException "Address already in use: NET_Bind"

I woke up for work and started receiving this error, but I can't find this specific error anywhere.

I tried using netstat -ano to find any instances running on the aformentioned port, and also the ports I run Tomcat on:

HTTP port: 8090 JMX port: 1099

But no processes are running on any of the three ports. Any ideas?

Upvotes: 13

Views: 17344

Answers (4)

Marcos QP
Marcos QP

Reputation: 772

Restart your Idea. It works for me.

Previously, I tried: net stop winnat. But not working. I got received the message:
"El servicio de Controlador de Windows NAT no se ha iniciado. Puede obtener más ayuda con el comando NET HELPMSG 3521."

Sorry for my English (fix me please)

Upvotes: 0

xaiweiyi
xaiweiyi

Reputation: 351

Oh,my! This helps me a lot

// run cmd as administator
net stop winnat
net start winnat

Before,I have tried this,but it doesn't work

ipconfig /flushdns
netsh winsock reset

Upvotes: 34

vio-lin
vio-lin

Reputation: 111

As for me,the problem begin when i use idea to debug my web application. Then i find where the port configured and change to another port.

intellij tomcat debug

Upvotes: 11

phxism
phxism

Reputation: 406

this link might be helpful

net stop winnat

launch your idea tomcat

net start winnat

Upvotes: 5

Related Questions