apt-get updateおよびapt-get install mysql-serverの実行エラー


11

昨日から走ろうとしています

apt-get update

私はEC2で作成しているUbuntuインスタンスで失敗しました。

具体的には、これらのエラーが発生しています:

Ign http://security.ubuntu.com maverick-security/main amd64 Packages
Ign http://security.ubuntu.com maverick-security/universe amd64 Packages
Ign http://security.ubuntu.com maverick-security/multiverse amd64 Packages
Err http://security.ubuntu.com maverick-security/main Sources
  404  Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/universe Sources
  404  Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/main amd64 Packages
  404  Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/universe amd64 Packages
  404  Not Found [IP: 91.189.92.190 80]
Err http://security.ubuntu.com maverick-security/multiverse amd64 Packages
  404  Not Found [IP: 91.189.92.190 80]
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/main/source/Sources.gz  404  Not Found [IP: 91.189.92.190 80]

W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/universe/source/Sources.gz  404  Not Found [IP: 91.189.92.190 80]

W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/main/binary-amd64/Packages.gz  404  Not Found [IP: 91.189.92.190 80]

W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/universe/binary-amd64/Packages.gz  404  Not Found [IP: 91.189.92.190 80]

W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/maverick-security/multiverse/binary-amd64/Packages.gz  404  Not Found [IP: 91.189.92.190 80]

E: Some index files failed to download, they have been ignored, or old ones used instead.
root@ip-10-168-230-63:/etc/apt# 

また、mysql-serverをインストールしようとすると、エラーが発生します。

root@ip-10-168-230-63:/etc/apt# apt-get install mysql-server
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libhtml-template-perl mysql-server-5.1 mysql-server-core-5.1
Suggested packages:
  libipc-sharedcache-perl tinyca mailx
The following NEW packages will be installed:
  libhtml-template-perl mysql-server mysql-server-5.1 mysql-server-core-5.1
0 upgraded, 4 newly installed, 0 to remove and 81 not upgraded.
Need to get 12.1MB/12.2MB of archives.
After this operation, 29.5MB of additional disk space will be used.
Do you want to continue [Y/n]? Y
Err http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ maverick-updates/main mysql-server-core-5.1 amd64 5.1.61-0ubuntu0.10.10.1
  403  Forbidden
Err http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ maverick-updates/main mysql-server-5.1 amd64 5.1.61-0ubuntu0.10.10.1
  403  Forbidden
Err http://us-west-1.ec2.archive.ubuntu.com/ubuntu/ maverick-updates/main mysql-server all 5.1.61-0ubuntu0.10.10.1
  403  Forbidden
Failed to fetch http://us-west-1.ec2.archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.1/mysql-server-core-5.1_5.1.61-0ubuntu0.10.10.1_amd64.deb  403  Forbidden
Failed to fetch http://us-west-1.ec2.archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.1/mysql-server-5.1_5.1.61-0ubuntu0.10.10.1_amd64.deb  403  Forbidden
Failed to fetch http://us-west-1.ec2.archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.1/mysql-server_5.1.61-0ubuntu0.10.10.1_all.deb  403  Forbidden
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
root@ip-10-168-230-63:/etc/apt# 

走った

apt-get update --fix-missing

運もなく。

何か案は?

AWS EC2で問題なく実行されているUbuntu Linuxインスタンスでこれらのタスクを何度も実行しました。よろしくお願いします!


maverick(10.10)は2012年4月にEndOfLifeに達しました。http://fridge.ubuntu.com/2012/04/10/ubuntu-10-10-maverick-meerkat-end-of-life-reached-on-april-を参照してください10-2012 /
ガンバート

回答:


14

これはAmazon S3の既知のバグでした。これを修正するには、実行するだけですsudo apt-get update


これは、(古いLTSを使用して)OPの元の問題への答えではなかったにもかかわらず、私は12.04によ、これと同じエラーを取得し、あなたのソリューションは、それを固定し、その+1た
トビアス・J

3
彼には実行中の問題がapt-get updateあったので、推奨される解決策は実行することapt-get updateです!
セリン

6

修正は、これらの行をsources.listに追加することでした。

deb http://us.archive.ubuntu.com/ubuntu lucid main multiverse universe
deb http://us.archive.ubuntu.com/ubuntu lucid-security main multiverse universe
deb http://us.archive.ubuntu.com/ubuntu lucid-updates main multiverse universe

返信いただきありがとうございます。


2
気をつけてください:これはいつか機能しなくなります。archive.ubuntu.comを通じてセキュリティ更新プログラムを既に受信していません。LTSを継続する場合は、12.04へのアップグレードまたは再インストールをお勧めします。
リンツウィンド

6

Ubuntu 10.10 Maverick Meerkatは2012年4月10日にサポート終了(EOL)に達しました。これは、更なる更新(セキュリティ修正さえも)がなく、パッケージアーカイブがからarchive.ubuntu.comに移動することを意味しますold-releases.ubuntu.com。これがエラーの原因です。

パッケージソースを編集/etc/apt/sources.listおよび修正しますus-west-1.ec2プレフィックスも削除する必要があることに注意してください。EOLリリース専用のEC2パッケージサーバーはありません。


3

このアドバイス、および「古いリリース」に変更し、「アーカイブ」次のスニペットを述べた他のノートで私が前進助けました。

sudo sed 's@http://archive\.ubuntu\.com/@http://old-releases.ubuntu.com/@' -i /etc/apt/sources.list
sudo apt-get update
sudo apt-get upgrade

その後、私はそれは私が(私の場合のphp5-sqliteの中に)必要とされているものは何でもパッケージをインストールすることができました


0

addtionalのソースを追加しよう

gksu gedit /etc/apt/sources.list

あるいはのにtaskselを経由してLAMPをインストールします

sudo tasksel install lamp-server

0

セキュリティグループ->アウトバウンド

*   ALL Traffic ALL     ALL     0.0.0.0/0   Allow

google.comなどの外部サーバーに接続する場合、または更新する場合でも、Outboundを許可してください-sudo apt-get update

AWSフロントエンドgotoセキュリティグループ->アウトバウンドを使用してアウトバウンドを許可できます

AWSインスタンスに適切なグループを選択していることを確認してください

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.