マニュアルに従って、OpenStack ダッシュボードをインストールしようとしています (Juno とは異なります)。しかし、次の CLI を実行するとインストールが失敗します。
apt-get install openstack-dashboard apache2 libapache2-mod-wsgi memcached python-memcache
次のようなエラーがいくつか発生します:
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/p/python-django/python-django_1.6.1-2ubuntu0.6_all.deb 404 Not Found [IP: 91.189.92.201 80]
ポート80でpingとtelnetができます
ping 91.189.92.201
PING 91.189.92.201 (91.189.92.201) 56(84) bytes of data.
64 bytes from 91.189.92.201: icmp_seq=1 ttl=53 time=41.2 ms
64 bytes from 91.189.92.201: icmp_seq=2 ttl=53 time=41.4 ms
--- 91.189.92.201 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 41.221/41.324/41.427/0.103 ms
telnet 91.189.92.201 80
Trying 91.189.92.201...
Connected to 91.189.92.201.
Escape character is '^]'.
ポート80でpingとtelnetができます
$ ping 91.189.92.201
PING 91.189.92.201 (91.189.92.201) 56(84) bytes of data.
64 bytes from 91.189.92.201: icmp_seq=1 ttl=53 time=41.2 ms
64 bytes from 91.189.92.201: icmp_seq=2 ttl=53 time=41.4 ms
--- 91.189.92.201 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1001ms
rtt min/avg/max/mdev = 41.221/41.324/41.427/0.103 ms
# telnet 91.189.92.201 80
Trying 91.189.92.201...
Connected to 91.189.92.201.
Escape character is '^]'.
答え1
出力に表示されている python-django のバージョンが少し古いため、パッケージ リストを更新する必要がある可能性があります。パッケージ システムが常に最新の情報で動作していることを確認するには、パッケージをインストールする前にこれを実行することをお勧めします。
sudo apt-get update -y