在Windows中我们可以使用
<target name="stopnode" description="Stops all instances of node">
<exec executable="taskkill">
<arg value="/IM"/>
<arg value="node.exe"/>
</exec>
</target>
当我使用kill -9 process_id
时,在Mac中
或killall node
基于SO帖子Stop node.js program from command line。
当我尝试使用以下代码来终止节点服务器时,它会显示process not found
<exec osfamily="unix" executable="killall" failonerror="false" resultproperty="prp.result.kill">
<arg line="node"/>
</exec>
答案 0 :(得分:0)
我现在正在使用pkill命令
pkill节点