Home > Article > PHP Framework > How to kill the swoole process
How to kill the swoole process
1. If you use swoole in the project, you accidentally enable the daemon process in the configuration (that is, the process is in (has been running in the background), then running the program again will fail
2. It will show that the port is occupied
The solution is as follows:
The first step is to change the daemon process in the code to 0
Step 2: Find the pid of this port number (the port my code listens to is 9503), and get the PID
command as follows:
netstat -apn | grep 9503
Step 3: Kill this process
The command is as follows:
kill -9 18669
You can re-open the listening program at this time, and there will no longer be an error that the port is occupied
Recommended learning: swoole tutorial
The above is the detailed content of How to kill the swoole process. For more information, please follow other related articles on the PHP Chinese website!