您的位置:首页 > 其它

Address already in use: JVM_Bind:8080解决方案

2015-12-24 14:56 337 查看
There is another process bound to the same port.

In windows

netstat -ano


    will list all the protocols, ports and processes listening .

    Use taskkill -pid “proces to kill” /f to kill the process listening to the port.

    e.g

taskkill -pid 6224 /f


In linux

    use netstat -anp | grep port_name to list the processes bound to the same port. use kill -9 pid_name to kill the process listening to the port.

    e.g

netstat -anp | grep 8080
kill -9 6224
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: