Windows类日志
经常我们在启动应用的时候发现系统需要的端口被别的程序占用,如何知道谁占有了我们需要的端口,很多人都比较头疼,下面就介绍一种非常简单的方法,希望对大家有用假如我们需要确定谁占用了我们的9050端口
1、Windows平台
在windows命令行窗口下执行:
C:\>netstat -aon|findstr "9050" TCP 127.0.0.1:9050
0.0.0.0:0 LISTENING 2016
看到了吗,端口被进程号为2016的进程占用,继续执行下面命令:
C:\>tasklist|findstr "2016"
tor.exe 2016 Console 0 16,064 K
很清楚吧,tor占用了你的端口
1、Windows平台
在windows命令行窗口下执行:
引用
C:\>netstat -aon|findstr "9050" TCP 127.0.0.1:9050
0.0.0.0:0 LISTENING 2016
看到了吗,端口被进程号为2016的进程占用,继续执行下面命令:
引用
C:\>tasklist|findstr "2016"
tor.exe 2016 Console 0 16,064 K
很清楚吧,tor占用了你的端口
一、下载ISAPI_REWRITE并安装
二、修改httpd.ini
RewriteCond Host: (img\.abc\.cn)
RewriteCond Referer: (?!http://\1.*).*
RewriteCond Referer: (?!http://(?:.*\.baidu\.com|baidu\.com|.*
\.google\.net|google\.net|.*\.sohu\.com|sohu\.com)).+
RewriteRule .*\.(?:jpg|gif|bmp) /block.gif [I,O,N]
三、上传/block.gif文件到在虚拟主机img.abc.cn站点根目录下.
四、在IIS中修改?block.gif属性->http头->启用内容失效->立即过期
五、重启IIS完毕。
注:当从限制访问到允许访问,发现在IE下可以立即过期,firefox就不行。
二、修改httpd.ini
引用
RewriteCond Host: (img\.abc\.cn)
RewriteCond Referer: (?!http://\1.*).*
RewriteCond Referer: (?!http://(?:.*\.baidu\.com|baidu\.com|.*
\.google\.net|google\.net|.*\.sohu\.com|sohu\.com)).+
RewriteRule .*\.(?:jpg|gif|bmp) /block.gif [I,O,N]
三、上传/block.gif文件到在虚拟主机img.abc.cn站点根目录下.
四、在IIS中修改?block.gif属性->http头->启用内容失效->立即过期
五、重启IIS完毕。
注:当从限制访问到允许访问,发现在IE下可以立即过期,firefox就不行。