Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下命令在 Linux 服务器中运行我的程序:
$ nohup <your_script> &
它一直按照我的意愿运行。但我想阻止它。有人知道怎么做吗?
使用ps获取进程的 pid ,然后运行kill:
Kill -9 pid
找到进程ID,然后杀死进程:
ps aux | grep <your_script>
第二个数字是您的 PID,取该数字并将其传递给kill:
kill
kill -9 <PID>
或者,您也可以使用killall:
killall
killall <your_script>