今天使用ssh的时候遭遇问题:connect to host localhost port 22: Connection refused。于是想看看22号端口。查到查看端口的方法如下:
# 查看所有打开的端口及服务名(这里显示的服务名只是标准端口对应的服务名,可能并不准确)
nmap localhost
# 查看哪些进程打开了指定端口port(对于守护进程必须以root用户执行才能查看到)
lsof -i:port
# 查看哪些进程打开了指定端口port,最后一列是进程ID(此方法对于守护进程作用不大)
netstat -nap|grep port
# 查看端口号对应的系统服务名称
cat /etc/services
# 启动|停止|重启系统服务
sudo /etc/init.d/service start|stop|restart
另外,重启一下系统sshd进程就启动了,ssh就可以连上了^-^
ubuntu下查看进程端口
最新推荐文章于 2024-04-20 21:17:59 发布