查看ubuntu中ssh端口占用的方法:
1.打开终端命令行模式。
2.输入以下命令查看ssh端口占用便可。
netstat -nlap|grep sshd|grep tcp|grep LISTEN
3.若想清除占用,可通过kill命令杀掉对应的端口进程。
kill 123 #清除pid为123的端口进程
本文来源:https://www.yuntue.com/post/72656.html | 云服务器网,转载请注明出处!
怎样查看ubuntu的ssh端口占用查看ubuntu中ssh端口占用的方法:1.打开终端命令行模式。2.输入以下命令查看ssh端口占用便可。netstat -nlap|grep sshd|grep tcp|grep LISTEN3.若想清除占用,可通过kill