環境:
MySQL5.6社群版本
#CentOS6.3
安裝方法:
首先:執行
yum install mysql mysql-server -y
然後安裝到中途報錯如下:
file /usr/share/mysql/charsets/geostd8.xml conflicts between attempted installs of mysql-community-common-5.6.15-1.el6.x86_64 and mysql-libs-5.1.71-1.el6.x86_64 file /usr/share/mysql/charsets/greek.xml conflicts between attempted installs of mysql-community-common-5.6.15-1.el6.x86_64 and mysql-libs-5.1.71-1.el6.x86_64 file /usr/share/mysql/charsets/hebrew.xml conflicts between attempted installs of mysql-community-common-5.6.15-1.el6.x86_64 and mysql-libs-5.1.71-1.el6.x86_64
因為系統是安裝了很久了,以為是相關的插件包沒有更新,導致安裝新版的MySQL5.6不支援。
(推薦教學:centos教學)
第二步:執行以下操作更新系統外掛程式包
yum update
更新完畢之後還是報相同的錯誤,查閱了相關資料之後,說是包衝突引起的!先移除衝突的libs包,再進行安裝。
第三步:移除mysql-libs-5.1的套件
yum -y remove mysql-libs-*
第四步驟:重新執行安裝腳本
yum install mysql mysql-server -y
安裝成功之後:初始化mysql資料庫
service mysqld start
設定使用者名稱和密碼:
mysqladmin -u root password '密码'
相關影片教學推薦:linux影片教學
#以上是centos下mysql安裝失敗怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!