使用自訂 repo 的方式無法順利安裝 php-gd 等待測試更新
--
參考
- How to install PHP 5.6 on CentOS 7.0 x64
- Upgrade PHP from 5.4 to 5.6 on CentOS 7
- rpms.famillecollet.com/enterprise/7/php56/x86_64/
- rpms.famillecollet.com/enterprise/7/remi/x86_64/
- CentOS6/CentOS7にPHP5.6/PHP7をyumでインストール
--
安裝、更新 EPEL
1 2 |
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm |
--
編輯 yum 容器
vi /etc/yum.repos.d/repo.repo
1 2 3 4 5 6 7 |
[remi-php56] name=Les RPM de remi de PHP 5.6 pour Enterprise Linux 7 - $basearch mirrorlist=http://rpms.famillecollet.com/enterprise/7/php56/x86_64 # WARNING: If you enable this repository, you must also enable "remi" enabled=1 gpgcheck=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi |
雖然網路上所有的資料都有設定 gpgkey 但是都沒有說明產生的方法,所以如果有正常使用必須將 gpgcheck 設定為 0
--
更新 libzip
1 2 3 |
wget http://rpms.famillecollet.com/enterprise/7/remi/x86_64/libzip-last-1.1.3-1.el7.remi.x86_64.rpm yum localinstall libzip-last-*.rpm yum update |
--
安裝、更新 PHP
1 2 |
# yum remove php-* # yum install --enablerepo=remi,remi-php56 php php-devel php-mbstring php-pdo php-gd php-xml php-mcrypt php-mysql |
--
4,257 total views, 1 views today