Tìm một session đang SSH trong máy chủ
netstat -tnpa | grep 'ESTABLISHED.*sshd'
Hoặc
ps auxwww | grep sshd:
Ví dụ:
[root@sv public_html]# ps auxwww | grep sshd:
root 30670 0.0 0.4 153412 9888 ? Ss 13:35 0:00 sshd: root@pts/0
root 30690 0.0 0.4 155544 9804 ? Ss 13:36 0:00 sshd: root@pts/1
ở đây tìm được 2 session. Để đá session đó ra dùng lệnh đầu tiên dùng lệnh kill -9 PID
root@sv public_html]# kill -9 30670
Ngoài ra có thể sử dụng lệnh w
để tìm.
pkill -9 -t <tty dien vao>
VD: pkill -9. -t pts/0