updated: от
ext_109957:
Эдакие сложности.
Так проще и надёжнее:
fuser -n tcp [port number] -k
netstat -lntp | grep -E '^tcp +[^ ]+ +[^ ]+ +[^ ]+:2013 ' | awk '{print $7}' | grep '^[0-9]\+' -o | xargs -r kill
netstat -lntp - listening, numeric output, TCP, show processes
(
Read more... )
Comments 7
Так проще и надёжнее:
fuser -n tcp [номер порта] -k
Reply
netstat -lntp | grep -E '^tcp +[^ ]+ +[^ ]+ +[^ ]+:80'
tcp 0 0 0.0.0.0:8010 0.0.0.0:* LISTEN 2802/psi
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 2532/nginx
Reply
Reply
Reply
$ fuser -n tcp 8080
tcp: fuser: No such file or directory
8080: fuser: No such file or directory
Непонятно только, какое отношение упомянутые "гнуизмы" имеют к башу?
Reply
Reply
Reply
Leave a comment