/*by Jiangong SUN*/
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"

Finally, you can kill the service(s).

Restart your web site, and it will work.

本文介绍了解决在IIS7中配置网站时遇到“文件被另一个进程使用”的错误的方法。通过查找占用443端口的服务及其进程ID,并利用任务列表找到具体服务名称,最后终止该服务,使新网站可以成功启动。

2862

被折叠的 条评论
为什么被折叠?



