2016-03-08 48 views
1

第一次用linux和流星,很抱歉如果有一个愚蠢的错误。我尝试使用mupx部署流星示例应用程序todos,并按照自述文件中的说明进行操作,但出现以下错误。 (我使用Ubuntu 14.04 LTS服务器)。感谢帮助。无法部署待办事项;无法删除容器(todos-frontend)

Configuration file : mup.json 
Settings file : settings.json 

“ Checkout Kadira! 
It's the best way to monitor performance of your app. 
Visit: https://kadira.io/mup ” 

Meteor app path : /home/jan/todos 
Using buildOptions : {} 
Currently, it is only possible to build iOS apps on an OS X system. 

Started TaskList: Deploy app 'todos' (linux) 
[h2544161.stratoserver.net] - Uploading bundle 
[h2544161.stratoserver.net] - Uploading bundle: SUCCESS 
[h2544161.stratoserver.net] - Sending environment variables 
[h2544161.stratoserver.net] - Sending environment variables: SUCCESS 
[h2544161.stratoserver.net] - Initializing start script 
[h2544161.stratoserver.net] - Initializing start script: SUCCESS 
[h2544161.stratoserver.net] - Invoking deployment process 
Invoking deployment process: FAILED 
-----------------------------------STDERR----------------------------------- 
Failed to remove container (todos-frontend): Error response from daemon: No such container: todos-frontend 
docker: Error response from daemon: failed to create endpoint todos on network bridge: Error starting userland proxy: listen tcp 0.0.0.0:80: bind: address already in use. 
-----------------------------------STDOUT----------------------------------- 
todos 
base: Pulling from meteorhacks/meteord 
518dc1482465: Already exists 
a3ed95caeb02: Already exists 
a3ed95caeb02: Already exists 
a3ed95caeb02: Already exists 
537c534356b6: Already exists 
b65a0e1e554b: Already exists 
a3ed95caeb02: Already exists 
a3ed95caeb02: Already exists 
Digest: sha256:b5a4f6efa98e4070792ed36d33b14385a28e6ceda691a492ee5b9f2431b1515a 
Status: Image is up to date for meteorhacks/meteord:base 
d6d192579495851d5817288ff89abb69512562d7c2a7075f965484e64583c61b 
+1

这不是一个好问题,因为你只告诉我们你有问题,但我们不能帮助。你应该明白为什么你的'todos-frontend'给你带来问题,因为他说没有这样的容器。 –

回答

1

无法移除容器(待办事项-前端):从守护程序错误响应:没有这样的容器:待办事项-前端 搬运工:从守护程序错误响应:无法创建端点待办事项上网桥:为0.0绑定.0.0:80失败:端口已分配。

刚刚有同样的问题,

最后部署更改文件的端口号为未使用的端口在我的部署mup.json莫名其妙搬运工服务时,它要能自动释放口后。我用80,8000,8001,但迄今为止我还没有成功部署到同一端口两次,但阅读

信贷this

看来,不同的部署可能互相冲突很容易。我没有解决这个问题。

+0

是的,改变港口的作品,谢谢:) – equalsound