How can I kill TCP port 16969 in Bash?

后端 未结 4 835
小鲜肉
小鲜肉 2021-02-01 08:00

I have an application which uses TCP port 16969. It sometimes requires a quick software kernel reboot on the fly. But if I launch it too fast, I am locked with

4条回答
  •  闹比i
    闹比i (楼主)
    2021-02-01 08:45

    I often get this problem using JBoss in Netbeans...

    My solution :

    In a terminal type :

     sudo netstat -lnp | grep 8080  
    

    Then it display something like:

     tcp6       0      0 :::8080       :::*        LISTEN      1722/java
    

    Then use:

     kill 1722  //replace 1722 by the PID you found.
    

    Hope it will help!

提交回复
热议问题