Getting Segmentation Error: Error Starting Meteor Server

When I try to start my Meteor server, I get a segmentation error that reads:

Segmentation Error: 11ation

I am not sure why this is happening, and am trying to find which part of my code can cause this. I can't post everything here from my code, but any ideas on where this might come from?

+4
source share
3 answers

It turned out that Meteor was working in the background somehow (even after a restart).

Then find the meteor in your running processes:

ps -x | grep meteor

This gave me the following result:

 2080 ttys000    0:00.44 /Users/ruben/.meteor/packages/meteor-tool/.1.0.40.dr5jcc++os.osx.x86_64+web.browser+web.cordova/meteor-tool-os.osx.x86_64/dev_bundle/mongodb/bin/mongod --bind_ip 127.0.0.1 --smallfiles --nohttpinterface --port 3001 --dbpath /Users/ruben/Documents/projects/crewafrica/.meteor/local/db --oplogSize 8 --replSet meteor
 2141 ttys000    0:00.00 grep meteor

So I do:

kill -s KILL 2080
meteor reset
meteor
Now everything works!

Confirm Answer

+6
source

.meteor/packages, meteor update.

+2

, .

.

MAC - go to the project folder and type sudo su

WINDOWS - go to the project folder, press Shift, right-click and open the command line here.

Now dial a meteorite

0
source

All Articles