web-dev-qa-db-ja.com

juju bootstrap=失敗

MAAS 1.9.1があり、ノードをコミッションしました。ノードは準備完了状態です。プロキシの背後にいるため、取得または更新を行うことができます。 MAASには2つのインターフェースがあり、eth0は170.x.x.xにあり、eth 1は10.x.x.xにあります。私は、ip forwardおよびmasquerade用にeth1をセットアップしています。新しいノードをコミッションしたとき、問題はなく、Ubuntuパッケージなどをダウンロードしました。environment.yamlにはすべて正しいIP、キーなどがあります。

  1. ジュジュクイックスタート
  2. ジュジュブートストラップ

またはSudo openstack-install

ジュジュは失敗する。これにより、Landscape-Autopilotなどをインストールできなくなります

Debugコマンドなどを実行しましたが、以下に掲載されているもののほかに詳細はありません。

以下のいくつかのjujuエラー:

The system cannot communicate with the external server ( 170.22.143.154 ).
The Internet server may be busy, may be permanently down, or may be
unreachable because of network problems.

aavam@maas-dev6-1:~/.cloud-install$ juju bootstrap
WARNING ignoring environments.yaml: using bootstrap config in file "/home/aavam/.juju/environments/maas.jenv"
ERROR cannot determine if environment is already bootstrapped.: could not access file 'e3b6a06b-9a7e-456f-8a51-a313d7d2beda-provider-state': gomaasapi: got error back from server: 504 Gateway Timeout (<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Notification: Gateway Timeout</title>

~$ juju quickstart
juju quickstart v2.2.4
ssh-agent has been started.
To interact with Juju or quickstart again after quickstart
finishes, please run the following in a terminal to start ssh-agent:
  eval `ssh-agent`

bootstrapping the maas environment
reusing the already bootstrapped maas environment
retrieving the environment status
juju-quickstart: error: the state server is not ready:
ERROR Unable to connect to environment "maas".
Please check your credentials or use 'juju bootstrap' to create a new environment.

Error details:
could not access file 'e3b6a06b-9a7e-456f-8a51-a313d7d2beda-provider-state': gomaasapi: got error back from server: 504 Gateway Timeout (<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
1
aavam

Environment.yamlでは、http-proxy、https-proxy、およびno-proxyを定義する必要があります。すべての設定オプションについてはこちらをご覧ください https://jujucharms.com/docs/1.25/config-general

3
battlemidget

mAASサーバー上でIP転送とマスカレードを行い、問題を解決する必要がありました

iptables -L -n

/sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
/sbin/iptables -A FORWARD -i eth0 -o eth1 -m state --state RELATED,ESTABLISHED -j ACCEPT
/sbin/iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT

Sudo iptables-save

...また、必ず確認してください(大文字と小文字の両方)

http_proxy,HTTP_PROXY,HTTPS_PROXY,https_proxy,no_proxy and NO_PROXY in the
MAAS env is all set up......resolved the issue.......
i.e  export http_proxy=http://x.x.x.x:80  etc
1
aavam

以下が必要です ファイアウォールポートが開いています

MAAS、そのノード、およびオートパイロットは、インターネット、または少なくともこれらのサイト(httpおよびhttps)にアクセスできる必要があります。

  • maas.ubuntu.com
  • cloud-images.ubuntu.com
  • streams.canonical.com
  • ubuntuアーカイブ(archive.ubuntu.comまたはミラー)
  • api.jujucharms.com
  • manage.jujucharms.com
  • jujucharms.com
  • store.juju.ubuntu.com
  • keyserver.ubuntu.com
  • ppa.launchpad.net
  • usn.ubuntu.com

ファイアウォールに穴を開ける場合、これらのアドレスが複数のIPに解決される可能性があることに注意してください。

1
dpb