web-dev-qa-db-ja.com

Ubuntuでのjujuの問題-Canonical Distribution

Ubuntu Openstack-Canonical Distributionのインストール中(ステップ4 buntu.com/download/cloud/install-ubuntu-openstack )Jujuでエラーが発生しました。 Jujuはノードのブートストラップを行い、ubuntuインストーラーが起動しましたが、手順の最後にノードがシャットダウンしました。私は、environments.yamlファイルの編集を解決して、3600にbootstrap-timeoutを追加しました(すべてのvnodeはfastpath-installerを使用します)。

Sudo nano /usr/share/openstack/templates/juju-env/maas.yaml

そのように

default: maas

environments:
  maas:
    type: maas
    maas-server: 'http://x.x.x.x/MAAS/'
    maas-oauth: 'LnLE8w3grRK6hLcVgF:xxxxxxx'
    admin-secret: richardsith
    default-series: trusty
    authorized-keys-path: ~/.ssh/id_rsa.pub
    apt-http-proxy: 'http://x.x.x.x:8000/'
    lxc-clone: true
    bootstrap-timeout: 3600

  openstack:
    type: openstack
    use-floating-ip: true
    use-default-secgroup: true
    network: ubuntu-net
    auth-url: http://keystoneurl:5000/v2.0/
    tenant-name: ubuntu
    region: RegionOne
    auth-mode: userpass
    username: ubuntu
    password: richardsith

そして、私はコマンドを実行します

 $: Sudo openstack-install

enter image description here

enter image description here

その後、ノードが再起動し、起動中にそれを見ました

enter image description here

数分後、インストーラーが先頭に立ちました

enter image description here

ノードは準備完了を意味しますが、数秒後にダウンし、.commands.logでログはこれです

http://paste.ubuntu.com/9284133/

私はまた、jujuが次のログを受け取ってデバッグでブートストラップを手動で作成しようとしました http://paste.ubuntu.com/9342625/

7

このステップは解決され、Ubuntu Openstack-Canonical Distributionの最後のアップグレードでbootstrap-timeoutが3600に拡張されました。以下のコマンドを実行するには

Sudo apt-get update
Sudo apt-get dist-upgrade

このリンクを参照してください https://github.com/Ubuntu-Solutions-Engineering/openstack-installer/issues/280#event-204277001

このソリューションでは、私のラボのインストーラーが手順を続行しました。

3