IIS:The process cannot access the file because it is being used by another process.


I have encountered the problem when i configure a website in IIS 7.

"The process cannot access the file because it is being used by another process. (Exception from HRESULT: 0x80070020) "


Apparently, the TCP/IP port used in my new website is also used in another running services. So what i need to do is find the service(s).


Because my new site uses port 443, so i need to find which service(s) is using this port.

Firstly, 

run cmd 

-> netstat -aon  | find ":443"

Here it will shows process id of the service(s) you want.


Secondly, you can find the exact service(s) using its PID. 2272 is the PID in my case.

-> tasklist /fi "PID eq 2272"

1348821929_6571.png

Finally, you can kill the service(s). 

1348821929_6571.png

Restart your web site, and it will work.

注:本文转载自谷泊网,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。如有侵权行为,请联系我们,我们会及时删除。
上一篇 下一篇

分享

最新加入

最新评论