1. Find all PHP processes
You will see output similar to the following:
root 197372 ... php /www/wwwroot/.../1.php
root 197928 ... grep --color=auto phpFind the corresponding item; 1.php The process PID (e.g., 197372).
2. Terminate the migration process
kill -9 197372If there are multiple PHP processes running, you can terminate all PHP processes at once (use this with caution, as it may affect other PHP services):
pkill -9 -f 1.php3. Confirm that the process has been terminated.
Run again; ps aux | grep phpEnsure there are no ; 1.php Related processes.