我在Meteor中有一个项目,我从 Windows开始,但现在已经迁移到OS X.在Windows中,我总是能够通过使用CTRL-C在本地停止运行项目.这似乎没有在OS X的终端中做任何事情,它只是提出了一个新的命令
当我输入流星重置时,我得到以下内容:
reset: Meteor is running. This command does not work while Meteor is running your application. Exit the running Meteor development server.
我看着流星 – 帮助但没有运气.我还看到一篇帖子建议我进入Activity Monitor并关闭任何节点进程(这没有帮助),但必须有一种方法直接从终端执行此操作.
我被卡住了,无法重新加载应用程序,因为我无法关闭前一个应用程序.谢谢.
使用此代码来终止流星过程:kill `ps ax | grep '[m]eteor' | awk '{print $1}'`