0

当我尝试使用 Cloudify 安装 nodecellar 时,出现以下错误

    2015-07-13T17:31:03 LOG <nodecellar> [mongod_a50aa.configure] ERROR: Exception raised on operation [script_runner.tasks.run] invocation
Traceback (most recent call last):
  File "/root/cloudify.host_dba5c/env/local/lib/python2.7/site-packages/cloudify/decorators.py", line 125, in wrapper
    result = func(*args, **kwargs)
  File "/root/cloudify.host_dba5c/env/local/lib/python2.7/site-packages/script_runner/tasks.py", line 58, in run
    return process_execution(script_func, script_path, ctx, process)
  File "/root/cloudify.host_dba5c/env/local/lib/python2.7/site-packages/script_runner/tasks.py", line 74, in process_execution
    script_func(script_path, ctx, process)
  File "/root/cloudify.host_dba5c/env/local/lib/python2.7/site-packages/script_runner/tasks.py", line 143, in execute
    stderr_consumer.buffer.getvalue())

我该如何解决这个问题?

4

1 回答 1

0

此异常由运行脚本的 Cloudify 脚本插件引发,该脚本以非零错误代码退出。这是该错误的来源

返回非零代码的脚本是映射到 mongod 节点上的配置操作的脚本。哪个脚本取决于您使用的 Nodecellar 蓝图的版本。

如果没有关于特定蓝图版本、您安装的 Cloudify 版本、有关您的提供商(本地、Vagrant、Openstack、AWS)和操作系统(Ubuntu、Centos 等)的详细信息,我无法给出更详细的答案。

于 2015-07-13T08:35:53.873 回答