web-dev-qa-db-fra.com

MaaS - juju bootstrap et ssh introuvable

aujourd'hui je veux juju boostrap donc je fais ssh-keygen et j'obtiens ceci

Generating public/private rsa key pair.
Enter file in which to save the key (/home/hsf/.ssh/id_rsa): key
Enter passphrase (empty for no passphrase): ubuntu
Enter same passphrase again: ubuntu
Your identification has been saved in key.
Your public key has been saved in key.pub.
The key fingerprint is:
7e:d2:df:66:f5:2f:92:02:ad:10:67:b7:10:cd:33:03 hsf@ubuntu-server
The key's randomart image is:
+--[ RSA 2048]----+
|        E+       |
|        . *      |
|         . +     |
|      . + .      |
|       +S+ .     |
|      ....o     .|
|       .ooo  . ..|
|        .o..o.+ .|
|           ..+..o|
+-----------------+

Ensuite, je copie ma clé publique dans key.pub est comme ceci:

ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC89zkec0YhwYuUmjB6oxmLGmzH2nCvJMF0mjigodxN$

Dans le tableau de bord maas: appuyez sur "Ajouter une clé SSH" et copiez et ajoutez la clé.

Alors maintenant, je veux bootstrap et j'obtiens ceci:

2012-08-27 13:02:02,923 INFO Bootstrapping environment 'maas' (Origin: distro type: maas)...
2012-08-27 13:02:05,935 ERROR Failed to launch machine /MAAS/api/1.0/nodes/node-3c4b1752-f031-11e1-bd44-001185e67955/; attempting to release.
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/juju/providers/maas/launch.py", line 44, in start_machine
    cloud_init = self._create_cloud_init(machine_id, zookeepers)
  File "/usr/lib/python2.7/dist-packages/juju/providers/common/launch.py", line 95, in _create_cloud_init
    cloud_init.add_ssh_key(get_user_authorized_keys(config))
  File "/usr/lib/python2.7/dist-packages/juju/providers/common/utils.py", line 84, in get_user_authorized_keys
    raise LookupError("SSH authorized/public key not found.")
LookupError: SSH authorized/public key not found.
SSH authorized/public key not found.
2012-08-27 13:02:11,969 ERROR SSH authorized/public key not found.

Je ne sais pas quoi faire. Veuillez aider.

2
user84471

Il y a deux choses que vous faites mal:

  1. Vous n'avez pas besoin de mettre une clé SSH dans MAAS lorsque vous utilisez Juju, Juju gérera tout cela pour vous.

2.

Entrez le fichier dans lequel enregistrer la clé (/home/hsf/.ssh/id_rsa): clé

Laissez-le écrire le fichier à l'emplacement par défaut. Ensuite, Juju le trouvera et l'utilisera.

1
czajkowski