PHP7 est disponible et pris en charge sur OL7. Le canal de distribution YUM doit être activé manuellement pour que les packages RPM soient disponibles :
1. Modifiez /etc/yum.repos.d/public-yum-ol7.repo fichier et assurez-vous d'activer "ol7_software_collections ” dépôt.
[ol7_software_collections] name=Software Collection Library release 3.0 packages for Oracle Linux 7 (x86_64) baseurl=https://yum.oracle.com/repo/OracleLinux/OL7/SoftwareCollections/x86_64/ gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle gpgcheck=1 enabled=1
2. Installez PHP7.0 et http24 :
# yum install rh-php70-php rh-php70 httpd24-mod_ssl
3. Arrêtez tout autre ancien service httpd et désactivez-le également :
# systemctl stop httpd # systemctl disable httpd # systemctl status httpd
4. Démarrez le service httpd24 et activez-le également :
# systemctl start httpd24-httpd24-httpd.service # systemctl enable httpd24-httpd24-httpd.service # systemctl status httpd24-httpd24-httpd.service
5. Testez PHP7.0 et httpd24.
# echo ' ' >/opt/rh/httpd24/root/var/www/html/phpinfo.php # rpm -q elinks >/dev/null || yum install elinks # elinks -dump http://localhost/phpinfo.php | head -15