Meteor.js killed without magazines

Trying to run examples for Meteor.js. It does not work with example parties without leaving any logs:

$ meteor run

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

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

Killed

It seems like it is crashing for some reason, but how to debug it?

meteor reset did not help.

+6
source share
1 answer

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

+6
source

Source: https://habr.com/ru/post/956296/


All Articles