Tag: fiware天鹅座

在运行cygnus docker之后,立即存在(尽pipe没有错误)

根据https://github.com/telefonicaid/fiware-cygnus/tree/master/docker (源代码: https : //github.com/telefonicaid/fiware-cygnus.git )构buildcygnus docker之后,在不改变configuration的情况下,容器按照原样运行。 但是,它运行后立即存在(虽然没有错误)。 使用docker-compose时,保持容器运行的推荐方法是什么? 现在,将“stdin_open:true”添加到yml文件中是有用的。 发布的原因是文档似乎没有解决这个问题( 参见 http://fiware-cygnus.readthedocs.org/en/develop/index.html )。 谢谢!

问题与telefonica / orchestrator

我正在处理一个问题,同时试图使用telefonica / orchestrator,我希望任何人都可以帮助我。 我的服务器是CentOS 7.3,我正尝试使用docker版本1.10.3和FIWARE构build一个物联网平台。 我成功地安装了所有必要的容器(mongodb,orion,mysql,keystone,keypass,pep和orchestrator)。 一切工作正常除了协调员。 当我正在尝试 curl localhost:8084/v1.0/version 回应是: curl: (56) Recv failure: Connection reset by peer 任何想法为什么发生这种情况?

pkgProblemResolver ::解决生成的rest,这可能是由持有的包引起的

我已经尝试通过docker安装对象存储。 但是,当我运行docker文件,它给了我这个输出和错误消息: Unpacking rsyslog (8.12.0-1ubuntu2) … Processing triggers for systemd (225-1ubuntu9.1) … Setting up init-system-helpers (1.23ubunt3) … Setting up cron (3.0p11-127ubuntu1) … Adding group `crontab' (GID 107) … Done. update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults update-rc.d: warning: stop runlevel arguments (1) do not match cron Default-Stop values […]

docker上的Fiware Orion挂起

几个小时后,Orion停止响应 我在我的Docker文件中使用了最新的docker镜像(docker文件中有其他服务): mongo: image: mongo:3.2 hostname: mongo container_name: mongo ports: – "27017:27017" command: –nojournal orion: image: fiware/orion hostname: orion container_name: orion ports: – "1026:1026" mem_limit: 1g links: – mongo command: -dbhost mongo -logLevel INFO 我的docker和docker构成版本是: Docker version 17.09.0-ce, build afdb6d4 docker-compose version 1.16.1, build 6d1ac21 Orion进程总是在这里,但不会响应HTTP请求: [root@orion contextBroker]# ps aux USER PID %CPU %MEM VSZ […]

从源代码构buildfiware / cygnus docker – 最后一步(8)

当试图从源代码构build一个fiware / cygnus泊坞窗图像时,最后一部分,即从jar中构build图像: docker build -f ./docker/Dockerfile -t fiware/cygnus . 在构build过程的最后一步(8)中给出以下消息:“没有指定源文件”。 在这一点上,build筑似乎被中止。 该build筑是根据以下url完成的: https : //github.com/telefonicaid/fiware-cygnus/tree/master/docker (源代码来自: https : //github.com/telefonicaid/fiware-cygnus.git )首先从提供的源代码构buildJava归档(jar),然后从jar文件构builddocker镜像。 1)步骤8中的消息可能是什么原因? 因为根据文件,没有提到其他步骤。 此外,在文档中特别提到的“目标”目录似乎没有做出来。 2)然而,确实出现了一个图像,但没有标签( 参见上面提到的命令中的“-t fiware / cygnus”标志)。 这是否是由于大楼只完成了第8步而留下不完整的图像? 非常感谢!