I believe that many students like to use PHP integrated environment. Most of them should have used PHPstudy. I believe that some students have encountered the situation where phpstudy port 80 is occupied when using phpstudy. This article will tell you about it. How to solve this problem.
When using phpstudy, port 80 will always be occupied. I saw other steps: 1. Run netstat -ano on cmd to see what port 80 is occupied, and then find the corresponding end process in the task manager. Usually it is occupied by System. Right-clicking to end the process cannot end it. If you end the process tree, you will get a blue screen~
So I thought of modifying the port and not competing with them for port 80, so I set port 8080,
Set Listen 8080 under httpd.conf
## Set under httpd-vhosts.conf
In fact, this configuration will eventually stop apache from runninghttp://www.php.cn/xiazai/gongju/844
PHPstudy download:http:// www.php.cn/xiazai/gongju/845
Recommended similar articles:
After installing phpstudy, I found that port 80 was occupied
The above is the detailed content of Detailed solutions when PHPstudy port 80 is occupied. For more information, please follow other related articles on the PHP Chinese website!