Home> PHP Framework> Swoole> body text

How to shut down the swoole daemon

(*-*)浩
Release: 2019-12-09 10:28:27
Original
5237 people have browsed it

How to shut down the swoole daemon

1. Use SWOOLE in the project today, accidentally open the guardian process in the configuration (that is, the process is running in the background)(Recommended learning:# swoole video tutorial)

How to shut down the swoole daemon

##2. When debugging the socket code, the process ended and was restarted, and it always showed that the port was occupied

How to shut down the swoole daemon

3. Even if the terminal command running window is closed and reopened at this time, the port is still occupied and the process cannot be started again. The solution is as follows:

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

How to shut down the swoole daemon

The second step : Find the pid of this port number (the port my code listens to is 9503), and get the PID

The command is as follows:

netstat -apn | grep 9503
Copy after login

How to shut down the swoole daemon

Step 3: Kill the process

The command is as follows:

kill -9 186691
Copy after login

At this time, you can restart the listening program. No more error reports that the port is occupied

How to shut down the swoole daemon

The above is the detailed content of How to shut down the swoole daemon. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!