Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/variables/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 尝试在数字海洋上使用meteor_Javascript_Deployment_Meteor_Digital Ocean - Fatal编程技术网

Javascript 尝试在数字海洋上使用meteor

Javascript 尝试在数字海洋上使用meteor,javascript,deployment,meteor,digital-ocean,Javascript,Deployment,Meteor,Digital Ocean,我有一个数字海洋水滴,我正试图部署最基本的流星应用程序,但我得到了失败的响应。知道为什么会这样吗 更新:添加了整个输出 Anderss-iMac:microscope-deploy anderskitson$ mup deploy Meteor-UP : Production Quality Meteor Deployments -------------------------------------------------- Bundling Started: /Users/ander

我有一个数字海洋水滴,我正试图部署最基本的流星应用程序,但我得到了失败的响应。知道为什么会这样吗

更新:添加了整个输出

 Anderss-iMac:microscope-deploy anderskitson$ mup deploy

Meteor-UP : Production Quality Meteor Deployments
--------------------------------------------------

Bundling Started: /Users/anderskitson/sites/microscope

Started TaskList: Deploying App
[bray.anderskitson.ca] uploading bundle
[bray.anderskitson.ca] uploading bundle: SUCCESS
[bray.anderskitson.ca] setting up env vars
[bray.anderskitson.ca] setting up env vars: SUCCESS
[bray.anderskitson.ca] invoking deployment process
[bray.anderskitson.ca] invoking deployment process: FAILED

    -----------------------------------STDERR-----------------------------------
    Warning: Permanently added 'bray.anderskitson.ca,162.243.52.235' (RSA) to the list of known hosts.
    npm WARN package.json http-proxy@1.0.0 No repository field.
    npm http GET https://registry.npmjs.org/fibers
    npm http 304 https://registry.npmjs.org/fibers
    stop: Unknown instance: 
    bash: line 46: wait-for-mongo: command not found
    -----------------------------------STDOUT-----------------------------------

    > fibers@1.0.1 install /opt/meteor/tmp/bundle/programs/server/node_modules/fibers
    > node ./build.js

    `linux-x64-v8-3.14` exists; testing
    Binary is fine; exiting
    fibers@1.0.1 node_modules/fibers
    meteor start/running, process 10373
    wait for mongo(5 minutes) to initiaze
    ----------------------------------------------------------------------------
Completed TaskList: Deploying App

我遇到了同样的问题,我发现这个命令并没有很好地执行


sudo npm安装-g永久用户关闭等待mongo

我手动执行了这个操作,这样我就可以看到wait for mongo是一个有效的命令,

看看这是否对你也有帮助

您是否先运行了
mup安装程序
?@Akshat是的,我运行了,所有的设置都正常。您能否发布整个输出,而不仅仅是低于什么的部分failed@Akshat好的,我已经在上面添加了整个输出。