Home  >  Article  >  PHP Framework  >  How to kill the swoole process

How to kill the swoole process

angryTom
angryTomOriginal
2020-02-12 13:44:353852browse

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

How to kill the swoole process

2. It will show that the port is occupied

How to kill the swoole process

The solution is as follows:

The first step is to change the daemon process in the code to 0

How to kill the swoole process

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

How to kill the swoole process

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

How to kill the swoole process

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn