meteor和mongodg在debian wheezy上退出代码1

我刚刚安装完全新的debian wheezy发行版。 我想安装meteor框架,所以我做了:

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

正如官方meteor网站所build议的那样,但是在安装过程中,当我在创build一个新的meteor项目之后inputmeteor时会出现这个错误:

 => 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 

事实上,一旦一个新项目在编码之后创build并运行, meteor命令在端口3000上运行一个localhost web服务器,然后我们就可以看到这个web应用程序。

我不明白为什么我得到这个错误。 我的问题是否可能来自我的debian发行版?

做: $: LC_ALL=<your language>系统语言在哪里。 像de_DE.UTF-8en_US.UTF-8

在控制台中:

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