2015-07-13 15 views
0

,當我嘗試安裝nodecellar與Cloudify,我收到以下錯誤Cloudify nodecellar,任務失敗 'script_runner.tasks.run' - > RecoverableError( 'ProcessException:')

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()) 

我怎麼能解決這個問題?

回答

0

Cloudify Script Plugin引發了此異常,您運行了一個腳本,該腳本以非零錯誤代碼退出。 Here is the source of that error

返回非零代碼的腳本是映射到mongod節點上的configure操作的腳本。哪個腳本取決於您正在使用的Nodecellar藍圖的版本。

如果沒有關於特定藍圖版本,您已安裝的Cloudify版本,您的提供商(本地,Vagrant,Openstack,AWS)和操作系統(Ubuntu,Centos等)的詳細信息,我無法給出更詳細的答案)。

+0

我安裝了Cloudify 3.1,操作系統是Ubuntu Server 12.04,提供者是本地的,我已經解決了這個問題,對我來說這是一個代理問題。但現在我得到另一個問題(http://stackoverflow.com/questions/31396092/deploying-nodecellar-in-cloudify-nodecellar-cant-start)。請幫助我.. –

相關問題