1 Answer
first find the current login ssh user by using # who -la. next step filter the user ip and PID using # who -la | awk '{print $7$8}'. finally kill the process by using # kill -9 PID.
Your Answer
x