2012-09-15 15 views
5

Estoy intentando experimentar con la informática de clúster en AWS. Soy completamente nuevo en esto y tengo algunos problemas. Estoy tratando de seguir el tutorial que se encuentra aquí: http://star.mit.edu/cluster/docs/latest/plugins/ipython.html#using-the-ipython-cluster. Yo uso starcluster para iniciar una instancia de clúster con lo siguiente:informática en clúster utilizando starcluster e ipython en AWS

starcluster start mycluster 

Todo viene como se esperaba y se nota que el plugin ipython ha cargado. entonces trato de ejecutar el siguiente comando como se muestra en el tutorial:

starcluster sshmaster mycluster -u myuser 

la conexión falla, sin embargo, y me dice

Permission denied (publickey). 

soy capaz de iniciar sesión con

starcluster sshmaster mycluster 

, así que traté de continuar con el tutorial conectado al maestro, pero cuando intento crear el cliente que recibo, error:

AssertionError: Not a valid connection file or url: 
u'/root/.ipython/profile_default/security/ipcontroller-client.json' 

La única cosa que vi que parecía fuera de lo común es cuando el grupo empezaba a esta apareció:

>>> Running plugin ipcluster 
>>> Writing IPython cluster config files 
>>> Starting IPython cluster with 7 engines 
>>> Waiting for JSON connector file... 
>>> Creating IPCluster cache directory: /Users/username/.starcluster/ipcluster 
>>> Saving JSON connector file to '/Users/username/.starcluster/ipcluster/mycluster-us-east-1.json' 
!!! ERROR - Error occurred while running plugin 'ipcluster': 
Traceback (most recent call last): 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/cluster.py", line 1506, in run_plugin 
    func(*args) 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/plugins/ipcluster.py", line 276, in run 
    plug.run(nodes, master, user, user_shell, volumes) 
    File "<string>", line 2, in run 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/utils.py", line 87, in wrap_f 
    res = func(*arg, **kargs) 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/plugins/ipcluster.py", line 228, in run 
    cfile = self._start_cluster(master, n, profile_dir) 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/plugins/ipcluster.py", line 173, in _start_cluster 
    master.ssh.get(json, local_json) 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/sshutils/__init__.py", line 431, in get 
    self.scp.get(remotepaths, localpath, recursive=recursive) 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/sshutils/scp.py", line 141, in get 
    self._recv_all() 
    File "/Library/Python/2.7/site-packages/StarCluster-0.93.3-py2.7.egg/starcluster/sshutils/scp.py", line 242, in _recv_all 
    msg = self.channel.recv(1024) 
    File "build/bdist.macosx-10.8-intel/egg/ssh/channel.py", line 611, in recv 
    raise socket.timeout() 
timeout 

¿Alguna idea?

Respuesta

6

El tutorial asume CLUSTER_USER = myuser en ~/.starcluster/config a pesar de que de manera predeterminada CLUSTER_USER = sgeadmin

Cuestiones relacionadas