查询电脑所有端口号
netstat -aon
查询某个端口号
tasklist | findstr 端口 获取 netstat -aon|findstr 端口号 ----> netstat -aon|findstr "19983"
杀死某个进程
taskkill /pid pid号 /f ----> 例如: taskkill/pid 7880 /f
资料:https://blog.csdn.net/epyingxue/article/details/86084018
测试tomcat 服务是否启动成功命令
telnet 127.0.0.1 19980
curl www.baidu.com
来源:oschina
链接:https://my.oschina.net/111222233/blog/3235391