問題簡(jiǎn)述
最近在使用apt安裝mysql5.5時(shí)遇到了一些問題,安裝過程中出現(xiàn)了錯(cuò)誤提示,導(dǎo)致無法成功安裝mysql5.5。
錯(cuò)誤提示
在使用apt安裝mysql5.5時(shí),出現(xiàn)以下錯(cuò)誤提示:
Err http://archive.ubuntu.com/ubuntu/ precise-updates/main mysql-common all 5.5.62-0ubuntu0.12.04.1
404 Not Found [IP: 2001:67c:1562::18 80]
Err http://archive.ubuntu.com/ubuntu/ precise-updates/main mysql-server all 5.5.62-0ubuntu0.12.04.1
404 Not Found [IP: 2001:67c:1562::18 80]
Err http://archive.ubuntu.com/ubuntu/ precise-updates/main mysql-server-5.5 amd64 5.5.62-0ubuntu0.12.04.1
404 Not Found [IP: 2001:67c:1562::18 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.5/mysql-common_5.5.62-0ubuntu0.12.04.1_all.deb 404 Not Found [IP: 2001:67c:1562::18 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.5/mysql-server_5.5.62-0ubuntu0.12.04.1_all.deb 404 Not Found [IP: 2001:67c:1562::18 80]
E: Failed to fetch http://archive.ubuntu.com/ubuntu/pool/main/m/mysql-5.5/mysql-server-5.5_5.5.62-0ubuntu0.12.04.1_amd64.deb 404 Not Found [IP: 2001:67c:1562::18 80]
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
問題分析
根據(jù)錯(cuò)誤提示中的信息,我們可以看到是無法找到mysql的安裝包,導(dǎo)致安裝失敗。這種情況很可能是由于源的問題導(dǎo)致的,可以嘗試更換源再次嘗試安裝。
解決方案
根據(jù)問題分析得出的結(jié)論,我們可以嘗試更換源來解決問題。具體步驟如下:
- 打開/etc/apt/sources.list文件
- 將原有的源替換為以下內(nèi)容:
deb http://mirrors.163.com/ubuntu/ precise main multiverse restricted universe
deb http://mirrors.163.com/ubuntu/ precise-backports main multiverse restricted universe
deb http://mirrors.163.com/ubuntu/ precise-updates main multiverse restricted universe
deb http://mirrors.163.com/ubuntu/ precise-security main multiverse restricted universe - 保存文件并退出
- 執(zhí)行apt-get update命令,更新源信息
- 使用apt-get install mysql-server安裝mysql
總結(jié)
通過更換源的方式,我們成功解決了無法安裝mysql5.5的問題,讓我們成功安裝了所需的軟件。在使用apt進(jìn)行安裝時(shí),我們需要注意源的問題,這樣才能保證安裝過程的順利進(jìn)行。