This question has already been answered:
- Get the pid of processes by script name 2 answers
I started it with the following command: nohup python3 /home/python_ml/BotMainPart.py How can I stop the execution of this process?
This question has already been answered:
I started it with the following command: nohup python3 /home/python_ml/BotMainPart.py How can I stop the execution of this process?
A similar question was asked earlier and an answer has already been received. If the answers provided are not exhaustive, please ask a new question .
Source: https://ru.stackoverflow.com/questions/913657/
All Articles
kill <pid>, you may need to send the "correct signal" - thenkill -9 <pid>, but the process should be able to correctly process this signal. - KoVadimpgrep python3orps aux | grep python3ps aux | grep python3and then with eyes to find the desired process. - KoVadim