Canonicalの助けを借りて、何かを理解することができました。 ubuntuから一時的な画像をダウンロードすると、maas-import-pxe-filesがスタックします。以下を隔離しました:
wget -v xhttps://maas.ubuntu.com/images/query/precise/ephemeral/released-dl.current.txt -O /tmp/aaa.tmp
--2013-10-04 17:12:57-- https://maas.ubuntu.com/images/query/precise/ephemeral/released-dl.current.txt
Maas.ubuntu.com(maas.ubuntu.com)の解決... 91.189.90.19、91.189.89.122 maas.ubuntu.com(maas.ubuntu.com)への接続| 91.189.90.19 |:443 ...が失敗しました:接続タイムアウトしました。
Maas.ubuntu.com(maas.ubuntu.com)| 91.189.89.122 |:443 ...への接続に失敗しました:接続がタイムアウトしました。
Www.google.com 80にtelnetで接続できるという事実にもかかわらず、私はwgetできません。これは、ラボにプロキシがあるために発生しています。これを回避するには
export http_proxy =proxy addr
export https_proxy =proxy addr
その後、注意してください
Sudo maas-import-pxe-files
それでも機能しませんが、
Sudo bash maas-import-pxe-files
します。
これでMaaS GUIで報告された問題も修正されるかどうかはまだわかりませんが、インストールが完了するとすぐに更新されます。
同じノードでリージョンとクラスターコントローラーを使用してMAASをセットアップしました。 GUIにログインでき、スーパーユーザーを作成できました。 2つの問題があり、それらは同じ問題の現れかもしれません。
1)ページの黄色のバーに次のメッセージが表示されています。
The region controller does not know whether any boot images have been imported yet.
If this message does not disappear in 5 minutes, there may be a communication problem between the region worker process and the region controller.
Check the region worker's logs for signs that it was unable to report to the MAAS API.
2)実行中:
Sudo maas-import-pxe-files
私はこの出力を取得します:
$ Sudo /usr/sbin/maas-import-pxe-files
Downloading to temporary location /tmp/tmp.rITlDMoaQl.
/tmp/tmp.rITlDMoaQl /var/log/maas
2013-10-03 11:14:46 URL:xhttp://archive.ubuntu.com/ubuntu//dists/precise/main/installer-AMD64/current/images/netboot/ubuntu-installer/AMD64//linux [4965840/4965840] -> "linux" > [1]
2013-10-03 11:14:48 URL:xhttp://archive.ubuntu.com/ubuntu//dists/precise/main/installer-> AMD64/current/images/netboot/ubuntu-installer/AMD64//initrd.gz [17446386/17446386] -> "initrd.gz" [1]
2013-10-03 11:14:49 URL:xhttp://archive.ubuntu.com/ubuntu//dists/quantal/main/installer-> AMD64/current/images/netboot/ubuntu-installer/AMD64//linux [5130968/5130968] -> "linux" > [1]
2013-10-03 11:14:51 URL:xhttp://archive.ubuntu.com/ubuntu//dists/quantal/main/installer-> AMD64/current/images/netboot/ubuntu-installer/AMD64//initrd.gz [18668122/18668122] -> > > "initrd.gz" [1]
2013-10-03 11:14:52 URL:xhttp://archive.ubuntu.com/ubuntu//dists/precise/main/installer-> i386/current/images/netboot/ubuntu-installer/i386//linux [5015840/5015840] -> "linux" [1]
2013-10-03 11:14:54 URL:xhttp://archive.ubuntu.com/ubuntu//dists/precise/main/installer-i386/current/images/netboot/ubuntu-installer/i386//initrd.gz [15977428/15977428] -> "initrd.gz" [1]
2013-10-03 11:14:55 URL:xhttp://archive.ubuntu.com/ubuntu//dists/quantal/main/installer-i386/current/images/netboot/ubuntu-installer/i386//linux [5171760/5171760] -> "linux" [1]
2013-10-03 11:14:57 URL:xhttp://archive.ubuntu.com/ubuntu//dists/quantal/main/installer-i386/current/images/netboot/ubuntu-installer/i386//initrd.gz [17086667/17086667] -> "initrd.gz" [1]
2013-10-03 11:14:58 URL:xhttp://ports.ubuntu.com/ubuntu-ports//dists/precise-updates/main/installer-armhf/current/images/highbank/netboot//vmlinuz [2978672/2978672] -"vmlinuz" [1]
2013-10-03 11:14:58 URL:xhttp://ports.ubuntu.com/ubuntu-ports//dists/precise-updates/main/installer-armhf/current/images/highbank/netboot//initrd.gz [4958070/4958070] -> "initrd.gz" [1]
2013-10-03 11:14:59 URL:xhttp://ports.ubuntu.com/ubuntu-ports//dists/quantal/main/installer-armhf/current/images/highbank/netboot//vmlinuz [3738504/3738504] -> "vmlinuz" [1]
2013-10-03 11:15:00 URL:xhttp://ports.ubuntu.com/ubuntu-ports//dists/quantal/main/installer-armhf/current/images/highbank/netboot//initrd.gz [6213909/6213909] -> "initrd.gz" [1]
/var/log/maas
(3つ以上のリンクを投稿することは許可されていないため、投稿のhttpの前に「x」を追加する必要がありました)
コマンドは、プロンプトを返さずにこの時点で停止したままになります。ご了承ください:
uname -a
Linux myhost 3.5.0-23-generic #35~precise1-Ubuntu SMP Fri Jan 25 17:13:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
バグ1067558と1070318を見つけましたが、これをどのようにすればいいかわかりません。
どんな助けも大歓迎です。
14.04でうまくいったのは:
1)/etc/network/interfaces
でネットワークアダプターの静的アドレスを構成します
# Example configuration
auto eth0
iface eth0 inet static
address 192.168.0.2
network 192.168.0.0
netmask 255.255.255.0
broadcast 192.168.0.255
gateway 192.168.0.1
2)外部ホストにpingを実行してインターネットアクセスを確認します。 ping google.com
。
エントリgateway 192.168.0.1
は、Sudo route add default gw 192.168.0.1
のようなルートを確立するため、必須です。
3)MAASをその静的アドレスに再構成し、PXEイメージをインポートします。 MaaSサーバーのIPアドレスを変更する方法?
Sudo dpkg-reconfigure maas-cluster-controller
Sudo dpkg-reconfigure maas-region-controller
4)PXEイメージのインポート
Sudo maas-import-pxe-files
行export http_proxy= proxy addr
およびexport https_proxy= proxy addr
を/ etc/environmentに追加して再起動し、それが実行されるかどうかを確認できますか?言及したSudo bash
コマンドを使用しない限り、Sudoはプロキシ設定を渡さないと思います。