广告

本站里的文章大部分经过自行整理与测试

2016年12月13日星期二

检查端口

Windows

1. 查询端口占用情况 (可以得到 PID)

# 查询所有端口
> netstat -ano

# 查询 8080 端口是否被占用
> netstat -ano|findstr 8080

2. 查询哪个程序占用了端口 (可以得到进程名)
> tasklist|findstr PID

3. 终止占用的进程

# 用在 Windows NT
> ntsd -c q -p PID

> ntsd -c q -pn httpd.exe

# 用在 Windows 7
> taskkill /im httpd.exe /f

CurrPorts
http://jasonmun.blogspot.my/2016/12/currports.html

Linux

1. 查询 8080 端口是否被占用, 并可以查看 PID / 程序名
$ netstat -plnta | grep 8080

$ lsof -P -i -n

$ nmap -sT -O localhost

2. 查看详细信息
$ ps -ef | grep PID

3. 终止进程
$ kill -9 PID

没有评论:

发表评论