码迷,mamicode.com
首页 >  
搜索关键字:findstr    ( 592个结果
windows统计端口连接数
netstat -na -p tcp| findstr 80 | find /C "ESTABLISH" netstat -an -p tcp | find "127.0.0.1" | find /c "2112" netstat -an |find /c ":80" ...
分类:Windows程序   时间:2017-07-06 22:03:29    阅读次数:375
java.rmi.server.ExportException: Port already in use: 1099的解决办法
二.解决办法 找出占用1099端口的进程,进入windows命令,查看什么进程占用了1099端口 使用命令:netstat -aon|findstr 1099 找出占用1099端口的进程,如下图所示: 然后关闭占用该端口的进程:taskkill -f -pid 3756 这样就可以正常启动Tomca ...
分类:编程语言   时间:2017-06-29 09:53:11    阅读次数:238
Intellij 代理抛出异常错误: java.rmi.server.ExportException: Port already in use: 1099,端口被占用
解决方案: 1.查找出占用进程id:netstat -ano|findstr 1099 2.杀死进程:taskkill -f -pid 4836 ...
分类:编程语言   时间:2017-06-17 12:05:18    阅读次数:161
windows 批处理小记
@echooff&setlocalenabledelayedexpansion echo修改hosts文件 ::typec:\windows\system32\drivers\etc\hosts^|findstr/n".*" :main echo=============================== echo请选择需要进行的操作 echo=============================== echo. echo1.添加hosts2.修改hosts..
分类:Windows程序   时间:2017-06-12 14:52:44    阅读次数:263
如何查看IIS与MSSQL数据库连接池
1、 打开IIS服务器windows任务管理器,进程,找到对应进程的PID,如下图; 2、 打开dos命令提示符窗口,输入netstat –ano |findstr “6408” >d:6408.txt 3、 打开对应的数据库实例,查询以下结果 SELECT hostname, hostproces ...
分类:数据库   时间:2017-06-03 15:11:09    阅读次数:302
MySQL数据库语句
一 . 常用mysql命令行命令 1 .启动MYSQL服务 net start mysql 停止MYSQL服务 net stop mysql 2 . netstat –na | findstr 3306 查看被监听的端口 , findstr用于查找后面的在端口是否存在 3 . 在命令行中登陆MYSQ ...
分类:数据库   时间:2017-05-28 20:12:08    阅读次数:265
Windows下端口占用查看
假如我们需要确定谁占用了我们的80端口 1、Windows平台在windows命令行窗口下执行:C:\>netstat -aon|findstr "80" TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448看到了吗,端口被进程号为2448的进程占用,继续执行下面命令: ...
分类:Windows程序   时间:2017-05-25 13:34:47    阅读次数:348
activeMQ启动失败61616port被占用问题
Failed t bind to server socket:tcp://localhost:61616 due to : java.net.BindException 通过netstat -aon | findstr "61616" 查找port被谁占用了。但是一直没有找到,google说是 In ...
分类:其他好文   时间:2017-05-24 21:05:45    阅读次数:217
如何查看某个端口被谁占用
1.开始 >运行 >cmd,或者是window+R组合键,调出命令窗口 2.输入命令:netstat -ano,列出所有端口的情况。在列表中我们观察被占用的端口,比如是49157,首先找到它。 3.查看被占用端口对应的PID,输入命令:netstat -aon|findstr "49157",回车, ...
分类:其他好文   时间:2017-05-23 19:44:30    阅读次数:183
如何关闭占用端口的应用
Microsoft Windows [版本 10.0.14393](c) 2016 Microsoft Corporation。保留所有权利。 C:\Windows\system32>netstat -aon | findstr "8080" TCP 0.0.0.0:8080 0.0.0.0:0 L ...
分类:其他好文   时间:2017-05-22 15:01:14    阅读次数:154
592条   上一页 1 ... 29 30 31 32 33 ... 60 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!