Kubernetes Delete Binary of Node
85 words
One minute
Check Running Process by Port
1
| netstat -plnt | grep 6666
|
1
| tcp6 0 0 :::6666 :::* LISTEN 9591/system-atm
|
Find Process by Port
1
2
| COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
system-at 9591 root 3u IPv6 47760 0t0 TCP *:6666 (LISTEN)
|
Find Out the Binary Path by Process ID
1
| lrwxrwxrwx 1 root root 0 Sep 26 16:10 /proc/9591/exe -> /bin/system-atm
|
Kill the Process
Delete the Binary