Configuração OpsCenter fornece: scp / tmp / .. Permissão negada

1

Estou tentando configurar o OpsCenter adicionando meu nó Cassandra localhost (para teste). As credenciais de login que usei para o SSH têm direitos sudo / root, mas recebo o erro:

scp: /tmp/tmpXInRfq: Permission denied

Eu posso entender que o protocolo SCP (que é aparentemente usado no OpsCenter) não pode fazer algo como executar um comando 'su'. Mas o que eu estou errado?

opscenterd.log:

2014-08-08 23:05:59+0200 []  INFO: Testing SSH connectivity to localhost
2014-08-08 23:05:59+0200 []  INFO: Testing SSH login to localhost
2014-08-08 23:05:59+0200 []  INFO: SSH connectivity/login test succeeded
2014-08-08 23:06:00+0200 []  INFO: agent_config items: {'cassandra_log_location': '/var/log/cassandra/system.log', 'thrift_port': 9160, 'jmx_pass': '*****', 'thrift_ssl_truststore': None, 'rollups86400_ttl': -1, 'api_port': '61621', 'use_ssl': 0, 'rollups7200_ttl': 31536000, 'kerberos_debug': False, 'storage_keyspace': 'OpsCenter', 'thrift_user': '', 'provisioning': 0, 'metrics_ignored_column_families': '', 'metrics_ignored_keyspaces': 'system, system_traces, system_auth, dse_auth, OpsCenter', 'jmx_user': '', 'cassandra_install_location': '', 'kerberos_use_keytab': True, 'rollups300_ttl': 2419200, 'thrift_pass': '*****', 'metrics_ignored_solr_cores': '', 'metrics_enabled': 1, 'kerberos_use_ticket_cache': True, 'thrift_ssl_truststore_type': 'JKS', 'rollups60_ttl': 604800, 'ec2_metadata_api_host': '169.254.169.254', 'kerberos_renew_tgt': True, 'thrift_ssl_truststore_password': '*****'}
2014-08-08 23:06:00+0200 []  INFO: Starting provisioning process
2014-08-08 23:06:00+0200 []  INFO: Starting installation phase of cluster provisioning
2014-08-08 23:06:00+0200 []  WARN: HTTP request http://localhost:61621/alive? failed: Connection was refused by other side: 111: Connection refused.
2014-08-08 23:06:00+0200 []  INFO: Beginning install of OpsCenter agent to localhost
2014-08-08 23:06:00+0200 [] ERROR: Installation failed: scp to u'localhost' failed
      File "/usr/share/opscenter/lib/py-debian/2.7/amd64/twisted/internet/defer.py", line 1018, in _inlineCallbacks
        result = result.throwExceptionIntoGenerator(g)

      File "/usr/share/opscenter/lib/py-debian/2.7/amd64/twisted/python/failure.py", line 349, in throwExceptionIntoGenerator
        return g.throw(self.type, self.value, self.tb)

      File "/usr/lib/python2.7/dist-packages/opscenterd/Agents.py", line 1042, in _provisionNode

      File "/usr/share/opscenter/lib/py-debian/2.7/amd64/twisted/internet/defer.py", line 1018, in _inlineCallbacks
        result = result.throwExceptionIntoGenerator(g)

      File "/usr/share/opscenter/lib/py-debian/2.7/amd64/twisted/python/failure.py", line 349, in throwExceptionIntoGenerator
        return g.throw(self.type, self.value, self.tb)

      File "/usr/lib/python2.7/dist-packages/opscenterd/Agents.py", line 1133, in _installAgent

      File "/usr/share/opscenter/lib/py-debian/2.7/amd64/twisted/internet/defer.py", line 1018, in _inlineCallbacks
        result = result.throwExceptionIntoGenerator(g)

      File "/usr/share/opscenter/lib/py-debian/2.7/amd64/twisted/python/failure.py", line 349, in throwExceptionIntoGenerator
        return g.throw(self.type, self.value, self.tb)

      File "/usr/lib/python2.7/dist-packages/opscenterd/SecureShell.py", line 135, in perform_scp

2014-08-08 23:06:00+0200 []  WARN: Marking request 068afb4c-d862-4265-856f-84103c35dddb as failed: Failure installing agent on localhost.
     Error output:
            scp: /tmp/tmpXInRfq: Permission denied

     Exit code: 1
2014-08-08 23:06:00+0200 []  INFO: Successfully installed agent and dsc on node localhost
2014-08-08 23:06:00+0200 []  WARN: Marking request 'install stage' (d9bd09cd-0ae4-41b3-ba25-f03adfe988dc) as failed: Failure installing agent on localhost.
     Error output:
            scp: /tmp/tmpXInRfq: Permission denied

     Exit code: 1
2014-08-08 23:06:00+0200 [] ERROR: Installation stage failed: Failure installing agent on localhost.
     Error output:
            scp: /tmp/tmpXInRfq: Permission denied

     Exit code: 1
2014-08-08 23:06:00+0200 []  WARN: Marking request 'provision' (148d05e8-a1aa-49c8-ac2d-a1e523b79009) as failed: Installation stage failed: Failure installing agent on localhost.
     Error output:
            scp: /tmp/tmpXInRfq: Permission denied

     Exit code: 1
2014-08-08 23:06:00+0200 [] ERROR: 
2014-08-08 23:06:00+0200 [] ERROR: Cluster provisioning failed: Exception: Installation stage failed: Failure installing agent on localhost.
     Error output:
            scp: /tmp/tmpXInRfq: Permission denied

     Exit code: 1
2014-08-08 23:06:00+0200 [] ERROR: Failed to provision cluster: Cluster provisioning failed: Exception: Installation stage failed: Failure installing agent on localhost.
     Error output:
            scp: /tmp/tmpXInRfq: Permission denied

     Exit code: 1

O que estou errado?

Obrigado antecipadamente!

Atenciosamente,

Melroy van den Berg

    
por danger89 08.08.2014 / 23:43

1 resposta

1

OpsCenter usa um arquivo temporário na própria máquina do OpsCenter para facilitar o ssh. Portanto, em vez de ser um problema com as credenciais de login que não possuem direitos sudo, acredito que, na verdade, o usuário que está executando o OpsCenter não tenha permissões para criar arquivos tmp em: %código% Na máquina executando o OpsCenter. Você pode confirmar se o usuário que está executando o OpsCenter pode tocar em um arquivo nesse local?

Obrigado.

    
por 09.08.2014 / 21:41