Meteor and mongodg exit code 1 on debian wheezy

I just finished installing my brand new debian wheezy distribution. I would like to establish a meteor structure, so I did:

sudo curl https://install.meteor.com/ | sh

as recommended by the official meteor site , but during installation I get this error when I print meteorafter creating a new meteor project

=> Started proxy.                             
Unexpected mongo exit code 1. Restarting.     
Unexpected mongo exit code 1. Restarting.     
Unexpected mongo exit code 1. Restarting.     
Can't start Mongo server.                     
MongoDB failed global initialization

Looks like MongoDB doesn't understand your locale settings. See
https://github.com/meteor/meteor/issues/4019 for more details

In fact, after creating and running a new project after coding, the team meteorstarts the local web server on port 3000, and then we can see the web application.

I do not understand why I am getting this error. Is it possible that my problems come from my debian distribution?

+4
2

Do: $: LC_ALL=<your language> . de_DE.UTF-8 en_US.UTF-8

+1

:

export PORT=3000
export MONGO_URL=mongodb://127.0.0.1:27017/meteor
export ROOT_URL=http://localhost:3000
export HTTP_FORWARDED_COUNT=1
+1

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


All Articles