本文出自:http://blog.csdn.net/svitter
引文出自:http://bbs.chinaunix.net/thread-775649-1-1.html
1.关闭服务 service 服务 stop
netstat -ntlp
kill -9 PID
2.使用两个方法
1.
ps aux|grep 端口
kill -9 PID
2.
iptables...
分类:
系统相关 时间:
2014-06-20 13:08:31
阅读次数:
324
Linux
netstat命令详解http://www.cnblogs.com/ggjucheng/archive/2012/01/08/2316661.htmlNetstat
命令用于显示各种网络相关信息,如网络连接,路由表,接口状态 (Interface Statistics),masquera...
分类:
Web程序 时间:
2014-06-07 23:01:25
阅读次数:
303
什么是端口?范围?端口映射如何查看Windows开放的端口?如何查看端口是否被占用?
查看端口占用情况netstat -an|grep LIST|grep 15
数据库监听占用情况。netstat -an|grep 1521 1521为端口号使用如下语句kill占用端口的进程linux下杀掉占用端口的进程ps
-efww|grep appltest|grep -v grep|cut ...
分类:
Web程序 时间:
2014-06-06 08:22:31
阅读次数:
252
tomcat 无法正常启动原因分析:(1)JAVA_home配置错误,或者根本没有配置(2)端口号
不能抢占别人的端口号 譬如 已有程序占用默认端口,则无法启动解决方法: 1、用 netstat -anb 来查看谁占用该端口号 2、改变端口号
:在conf/server.xml 中修改(3)、能正....
分类:
其他好文 时间:
2014-06-02 08:23:21
阅读次数:
268
引文:http://www.2cto.com/os/201305/209285.html
{
ubuntu查看占用某端口的程序
查看端口使用情况,使用netstat命令。
查看已经连接的服务端口(ESTABLISHED
netstat -a
查看所有的服务端口(LISTEN,ESTABLISHED)
netstat -ap
查...
分类:
系统相关 时间:
2014-06-02 04:50:43
阅读次数:
301
折腾了几个小时
xmanager连接AIX黑屏,怎么都无法连接
但177端口是好的
[aix_db/]#netstat-an|grep177
tcp400*.6177*.*LISTEN
udp400*.177*.*
起初检查hosts文件,对应的IP与主机名正确无误,删除了/etc/resolv.conf
执行#exportDISPLAY=192.168.2.130:0.0
再执行#xclock却..
分类:
其他好文 时间:
2014-06-02 03:55:47
阅读次数:
357
在windows命令行窗口下执行:C:\>netstat -aon|findstr
"80"TCP 127.0.0.1:80 0.0.0.0:0 LISTENING
2448看到了吗,端口被进程号为2448的进程占用,继续执行下面命令:C:\>tasklist|findstr "2448"threa...
分类:
Web程序 时间:
2014-05-29 18:16:59
阅读次数:
283
1.发现网络拓扑的几个重要的命令(1).netstat -i
提供网络接口的信息。我们还指定-n 标志以输出数值地址,而不是试图把它们反向解析成名字。netstat -r
展示路由表。dzhwen@deng:~/unpv13e/intro$ netstat -niKernel Interface t...
分类:
其他好文 时间:
2014-05-28 00:37:11
阅读次数:
351
Nginx突然无法运行,提示绑定0.0.0.0:80失败。1.使用 netstat
-ano命令查看端口情况,得知是pid 4的进程占用80端口,但这是system进程无法结束。2.接下来,使用net stop http与Sc config
http start= disabled禁用http服务,...