Linux下查看80端口是否被占用

方式一:

ps -ef |grep 80

Linux下查看80端口是否被占用_第1张图片


方式二:

netstat -anp |grep :80

方式三:

lsof -i:80


方式四:

netstat -tunlp |grep :80

方式五:

netstat -an |grep :80


Linux下查看80端口是否被占用_第2张图片

你可能感兴趣的:(linux下查看80端口占用)