Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meteor.js getting killed with no logs

Tags:

node.js

meteor

Trying to run examples for Meteor.js. It is failing with 'parties' example leaving no logs:

$ meteor run

[[[[[ ~/parties ]]]]]

=> Meteor server running on: http://localhost:3000/

Killed

Looks like it is crashing for some reason, but how to debug this?

meteor reset couldn't help.

like image 627
Dmitry BZz Avatar asked Oct 18 '13 23:10

Dmitry BZz


1 Answers

This is probably the linux out of memory killer killing your process when the available memory is exhausted. Check your ulimit settings and make sure your node process has sufficient memory available to run the example.

like image 109
Peter Lyons Avatar answered Oct 27 '22 16:10

Peter Lyons