Maison  >  Article  >  développement back-end  >  Construction de l'environnement Linux php apache oracle et compilation du code source et installation de PHP sous CentOS

Construction de l'environnement Linux php apache oracle et compilation du code source et installation de PHP sous CentOS

高洛峰
高洛峰original
2017-01-10 14:38:231453parcourir

Vous devez d'abord installer les packages d'installation suivants. Vous pouvez trouver les packages d'installation suivants dans la source de données du CD-ROM yum installation

yum install perl* freetype libpng* libxm2 libxm2-devel. curl curl-devel libjpeg*

Télécharger et installer manuellement jpegsrc.v8c.tar libmcrypt-2.5.8.tar.gz

Installer jpegsrc

# tar -xvzf jpegsrc.v8c.tar
# cd jpeg-8c
# ./configure --prefix=/usr/local/jpeg
# make && make install

Installer libmcrypt

# tar -xvzf libmcrypt-2.5.8.tar.gz
# cd libmcrypt-2.5.8
# ./configure --prefix-/usr/local/libmcrypt
# make && makeinstall

Installer PHP

# tar -xvzf php-5.5.10.tar.gz
# cd php-5.5.10
# ./configure --prefix=/usr/local/php -with-apxs2=/usr/local/httpd/bin/apxs --with-curl --with-mcrypt --with-mbstring
# make && make install

Configurer Apache pour prendre en charge PHP

Modifier le /usr/local/apache /conf/httpd.conf fichier

Ajouter après l'élément LoadModule :

LoadModule php5_module modules/libphp5.so

Linux php apache oracle环境搭建之CentOS下源码编译安装PHP

Ajouter

entre 49a83bcd86452e5ad987d3b8d0ee008d 2071f931c9870be1bebed0bdda8305e7
AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps
AddHandler application/x-httpd-php .php

Linux php apache oracle环境搭建之CentOS下源码编译安装PHPLinux php apache oracle环境搭建之CentOS下源码编译安装PHP

Redémarrez le service Apache

Exécuter la commande #apachectl restart

Test PHP

Écrire le fichier de sonde dans le répertoire racine du site

# vi phpinfo.php

Entrée :

<?php
phpinfo();
?>

Linux php apache oracle环境搭建之CentOS下源码编译安装PHP

Entrée http://192.168.23.131/ phpinfo.php dans la barre d'adresse du navigateur

Affiche les informations suivantes : PHP est installé avec succès.

Linux php apache oracle环境搭建之CentOS下源码编译安装PHP

Pour plus d'articles sur la construction de l'environnement Linux PHP Apache Oracle et la compilation du code source et l'installation de PHP sous CentOS, veuillez prêter attention aux Site Web chinois PHP !

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn