/*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 i
/*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.
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号