Cloudify: bootstrap-localcloud: falha na operação?

3
  • SO: Gentoo, CentOS
  • Versão: 2.1.0

Siga o guia de início rápido , recebi o erro abaixo ao executar bootstrap-localcloud :

cloudify@default> bootstrap-localcloud
STARTING CLOUDIFY MANAGEMENT
2012-05-30 14:55:50,396  WARNING [org.cloudifysource.shell.commands.AbstractGSCommand] - ; \
Caused by: org.cloudifysource.shell.commands.CLIException: \
Error while starting agent. \
Please make sure that another agent is not already running.
Operation failed.

Qual porta o Cloudify está usando para verificar se o agente está sendo executado?

PS: está funcionando bem quando executado no Windows.

ATUALIZAÇÃO: quarta-feira, 30 de maio 22:37:30 ICT 2012

Responder a @tamirkorem e @Itai Frenkel:

Tenho certeza porque esta é a primeira vez que eu executo esse comando em 2 servidores. Mais claramente, aqui está a saída:

cloudify@default> teardown-localcloud 
Teardown will uninstall all of the deployed services. Do you want to continue  [y/n]?
2012-05-30 22:43:33,145  WARNING [org.cloudifysource.shell.commands.AbstractGSCommand] - Teardown failed. Failed to fetch the currently deployed applications list. For force teardown use the -force flag.
Operation failed.

cloudify@default> teardown-localcloud -force
Teardown will uninstall all of the deployed services. Do you want to continue  [y/n]?
Failed to fetch the currently deployed applications list. Continuing teardown-localcloud.
.2012-05-30 22:46:39,040  WARNING [org.cloudifysource.shell.commands.AbstractGSCommand] - Teardown aborted, an agent was not found on the local machine.
Operation failed. 

e este é o resultado detalhado:

cloudify@default> bootstrap-localcloud --verbose
NIC Address=127.0.0.1
Lookup Locators=127.0.0.1:4172
Lookup Groups=localcloud
Starting agent and management processes:
gs-agent.sh gsa.global.lus 0 gsa.lus 0 gsa.gsc 0 gsa.global.gsm 0 gsa.gsm_lus 1 gsa.global.esm 0 gsa.esm 1 >/dev/null 2>&1
STARTING CLOUDIFY MANAGEMENT
2012-05-30 22:36:12,870  WARNING [org.cloudifysource.shell.commands.AbstractGSCommand] - ; Caused by: org.cloudifysource.shell.commands.CLIException: Error while starting agent. Please make sure that another agent is not already running. Command executed: /usr/local/src/gigaspaces-cloudify-2.1.0-ga/bin/gs-agent.sh gsa.global.lus 0 gsa.lus 0 gsa.gsc 0 gsa.global.gsm 0 gsa.gsm_lus 1 gsa.global.esm 0 gsa.esm 1 >/dev/null 2>&1

Responder a @Eliran Malka:

não há tal processo escutando na porta 4172:

# netstat --protocol=inet -nlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name    
tcp        0      0 127.0.0.1:9050          0.0.0.0:*               LISTEN      2363/tor            
tcp        0      0 127.0.0.1:3306          0.0.0.0:*               LISTEN      2331/mysqld         
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      2293/cupsd       
    
por quanta 30.05.2012 / 12:04

2 respostas

2

Encontrou o problema.

Quando eu manualmente executo este comando:

/usr/local/src/gigaspaces-cloudify-2.1.0-ga/bin/gs-agent.sh gsa.global.lus 0 gsa.lus 0 gsa.gsc 0 gsa.global.gsm 0 gsa.gsm_lus 1 gsa.global.esm 0 gsa.esm 1 > /var/log/cloudify.log 2>&1

(altere /dev/null para um arquivo de log)

Verei algo assim no arquivo de log:

2012-05-30 23:03:14,617 GSA WARNING [com.gigaspaces.grid.gsa] - [gsm_lus][1/]: Failed to start, exiting; Caused by: java.io.IOException: Cannot run program "/usr/local/src/gigaspaces-cloudify-2.1.0-ga//bin/gsm.sh" (in directory "/usr/local/src/gigaspaces-cloudify-2.1.0-ga/bin"): java.io.IOException: error=13, Permission denied

Então, como fiz para o cloudify.sh , tenho que dar permissão de execução para esses scripts de shell:

# find . -name '*.sh' -print0 | xargs -0 chmod +x

e está funcionando bem agora:

cloudify@default> bootstrap-localcloud 
STARTING CLOUDIFY MANAGEMENT
.
STARTING CLOUDIFY WEBUI
.
STARTING CLOUDIFY REST
CLOUDIFY LOCAL-CLOUD STARTED

LOCAL-CLOUD INFO :
        CLOUDIFY MANAGEMENT http://127.0.0.1:8099/
        CLOUDIFY GATEWAY    http://127.0.0.1:8100/
Local-cloud started successfully. Use the teardown-localcloud command to shutdown all processes.

O desenvolvedor do Cloudify deve verificar a permissão de execução e nos dar um aviso claro em vez de uma mensagem que é muito vaga como acima.

    
por 30.05.2012 / 18:18
3

Você provavelmente já está executando um localcloud em sua máquina. Existem várias opções:

  1. Tente conectar-se ao localcloud existente com connect localhost
  2. Executar teardown-localcloud antes de bootstrap-localcloud

Para mais informações sobre depuração, use a opção --verbose (por exemplo, bootstrap-localcloud --verbose )

    
por 30.05.2012 / 14:10