各个系统查看端口情况的方法

查看本机占用情况

windows

windows常用命令netstat,与find组合使用

1
netsat -an | find "8080"

mac

1
lsof -i 8090

linux

1
netstat -anptl | grep 8080

查看远程端口是否开启

nc

1
nc -v -n 127.0.0.1 22

wget

1
wget 192.168.1.1:6379

curl

1
curl 192.168.1.1:6379