配置remi源安裝mysql5.5
內容摘要:配置remi源安裝mysql5.51. 下載wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpmwget http://dl.fedoraproject.org/pub/epel/6/x86_64/epe...
配置remi源安裝mysql5.5
1. 下載
[remi]
全網互聯(www.fuypicc.com)注冊資金1000萬,廣東優秀的IDC服務提供商,依托中國電信,中國聯通,中國移動三大運營商形成三網合一,主營運營的數據中心包含:深圳,廣州,北京,上海,東莞,中山,佛山,香港,美國 等地專業級數據中心,服務器托管/服務器租用/機柜租用/帶寬批發/云計算/CDN加速,專線上網,VPN等服務,提供全年無休365*7*24小時售后在線技術服務,用戶至上,用心服務每一位用戶,您可以把您的應用放心的交給我們,我們為您提供完美解決方案和數據中心服務,用心服務,放心托付。0755-88820932
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
2. rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm
3. 導入key
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-remi
默認會在/etc/yum.repos.d/下創建remi.repo配置文件,remi.repo的內容如下:
name=Les RPM de remi pour Enterprise Linux $releasever - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/$releasever/remi/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/$releasever/remi/mirror
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
failovermethod=priority
[remi-test]
name=Les RPM de remi en test pour Enterprise Linux $releasever - $basearch
#baseurl=http://rpms.famillecollet.com/enterprise/$releasever/test/$basearch/
mirrorlist=http://rpms.famillecollet.com/enterprise/$releasever/test/mirror
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
這里的enabled=0表示默認不啟用,即yum在默認情況下,不查找此remi源,除非使用了--enablerepo=remi選項
4. yum安裝MySQL 5.5
yum --enablerepo=remi install mysql mysql-server
如果是升級MySQL,請用:
yum --enablerepo=remi update mysql mysql-server