查看ubuntu中ssh端口占用的方法:
1.打开终端命令行模式。
2.输入以下命令查看ssh端口占用即可。
netstat -nlap|grep sshd|grep tcp|grep LISTEN
3.若想清除占用,可通过kill命令杀掉对应的端口进程。
kill 123 #清除pid为123的端口进程